PureBytes Links
Trading Reference Links
|
Have you every wondered how many minutes are in a session day or night on
different commodities?
Below is a very simple script as an indicator for TS to place the number of
minutes in text on your graph of the time between the sessions of data 1.
An easy way to check your symbol universe settings.
James Semmons
VARS:TIMEDIFF1(0),TIMEDIFF2(0);
TIMEDIFF1=TIMETOMINUTES(Sess1EndTime)-TIMETOMINUTES(Sess1StartTime);
TIMEDIFF2=TIMETOMINUTES(Sess2EndTime)-TIMETOMINUTES(Sess2StartTime);
PLOT1(TIMEDIFF1,"DIFF1");
PLOT2(TIMEDIFF2,"DIFF2");
James "Skip" Semmons with Eudora Pro Ver 3.0.5(32) USA
Voice: (573) 874-1822 Fax: (573) 443-7304
E.Mail: jsemmons@xxxxxxxxxxxx
Web Site: http://members.sockets.net/~jsemmons
|