Re: [amibroker] how to plot buyprice at chart?

2009-12-03 Thread reinsley
Another example, a better one http://www.amibroker.org/userkb/2007/04/22/plotting-trade-prices/ For any reasons, this code is not at the same place as the first one in the UKB... BR reinsley a écrit : > Hi, > > Many solutions in the UKB. > > http://www.amibroker.org/userkb/2009/02/21/plo

Re: [amibroker] how to plot buyprice at chart?

2009-12-03 Thread reinsley
Hi, Many solutions in the UKB. http://www.amibroker.org/userkb/2009/02/21/plotting-trades-on-chart/ Best regards Aron a écrit : > > > buyPrice =...; > shortPrice = ; > |PlotShapes( *Buy* * *shapeSmallCircle*, *colorBrightGreen*, 0, > *BuyPrice*,0); > PlotShapes( *Short* *

Re: [amibroker] how to plot buyprice at chart?

2009-12-03 Thread Aron
buyPrice =...; shortPrice = ; |PlotShapes( *Buy* * *shapeSmallCircle*, *colorBrightGreen*, 0, *BuyPrice*,0); PlotShapes( *Short* * *shapeSmallCircle*, *colorRed*, 0, *ShortPrice*,0); | On 12/2/2009 1:28 PM, rink wrote: Hello all please tell me how to plot buy price at chart su

[amibroker] how to plot buyprice at chart?

2009-12-02 Thread rink
Hello all please tell me how to plot buy price at chart suppose i use this formula(look below) and it gives buy signal at 55 for symbol abc now i want to plot 55 on chart please tell me thankyou bk= MA(C,100); zz=c>bk; Buy = Cross( EMA( Close, 10 ), EMA( Close, 252 )) and bk ;