How to see change in daily price in Points not percentage

#1
Hello,

In Amibroker the title bar shows the open-high-low-close-percentage change.

How can i add price - yesterdays close (in daily view) to the chart title.

Thanks
 

vijkris

Learner and Follower
#2
Hello,

In Amibroker the title bar shows the open-high-low-close-percentage change.

How can i add price - yesterdays close (in daily view) to the chart title.

Thanks
you have to code few lines in afl editor to achieve that.
 
#4
pls add these lines to any afl that u r using..

/////////////
Hor1=Param("Horizontal Position1",820,1,1200,1);
Ver1=Param("Vertical Position1",1,1,830,1);

GfxTextOut(" " + "(" +(C-TimeFrameGetPrice( "C", inDaily, -1 )) + ")" ,Hor1+200,Ver1);
GfxSetTextColor( colorBlue );
GfxTextOut("C:"+C,Hor1+ 150, Ver1);
GfxSetTextColor(colorRed );
GfxTextOut("L:"+L,Hor1+100, Ver1);
GfxSetTextColor(colorGreen );
GfxTextOut("H:"+H,Hor1+50, Ver1);
GfxSetTextColor( colorLightBlue );
GfxTextOut("O:"+O,Hor1, Ver1);

//////////
 

Similar threads