PureBytes Links
Trading Reference Links
|
Hello,
These lines work on any time frame 5' 15' 30', except the Prior Day Open
It always finds the same bar as for Prior Day Low.
However PDO's price value is correct and # bar is wrong.
I don't see the mistake...
TIA for your help.
Regards
TOP = TimeFrameGetPrice( "O", inDaily, 0 ); // Today Open
barsTOP = BarsSince( O == LastValue( TOP ) );
_TRACE( "TOP= " + TOP + " barsTOP= " + barsTOP );
PDH = TimeFrameGetPrice( "H", inDaily, -1 ); //Prior Day High
barsPDH = BarsSince( H == LastValue( PDH ) );
_TRACE( "PDH = " + PDH + " barsPDH = " + barsPDH );
PDL = TimeFrameGetPrice( "L", inDaily, -1 ); //Prior Day Low
barsPDL = BarsSince( L == LastValue( PDL ) );
_TRACE( "PDL = " + PDL + " barsPDL = " + barsPDL );
PDO = TimeFrameGetPrice( "O", inDaily, -1 ); //Prior Day Open
barsPDO = BarsSince( O == LastValue( PDO ) );
_TRACE( "PDO = " + PDO + " barsPDO = " + barsPDO );
PDC = TimeFrameGetPrice( "C", inDaily, -1 ); // Prior Day Close
barsPDC = BarsSince( C == LastValue( PDC ) );
_TRACE( "PDC = " + PDC + " barsPDC = " + barsPDC );
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|