PureBytes Links
Trading Reference Links
|
hi Andrew,
maybe something like this.
Cond1 = your volatility breakout formula here ;
Cond2 = your price breakout formula here ;
Offsetcond1 = Param(" green 1 ",23,-100,100);
Offsetcond2 = Param(" green 2 ",23,-100,100);
PlotShapes( IIf(cond1, shapeDigit1+ shapePositionAbove,
shapeNone), colorgreen,H,Offsetcond1 );
PlotShapes( IIf(cond1, shapeDigit2+ shapePositionAbove,
shapeNone), colorgreen,H,Offsetcond2 );
Title = WriteVal( Interval()/60,1 )+" "+ "Min."+
"\nO="+Writeval(O,1.2)+
"\nH="+WriteVal(H,1.2)+
"\nL="+WriteVal(L,1.2)+
"\nC="+WriteVal(C,1.2);
"Green 1 = volatility breakout" ;
"Green 2 = price breakout" ;
use with interpretation window open.
Don
--- In amibroker@xxxxxxxxxxxxxxx, "Andrew Smith" <andy_kovacs@xxxx> wrote:
> Hi - another question.
>
> Is it possible to write comments automatically under shapes on graphs?
>
> For example, I have two types of arrows indicating buys, one is a price breakout and the other is a volatility breakout. I have two plotshapes lines in the code - one for each. Id like to write a letter under the arrow, for example "B" for breakout and "V" for volatility. Is this possible?
>
> Thanks
>
> Andy
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs Online - Over 14,500 titles.
No Late Fees & Free Shipping.
Try Netflix for FREE!
http://us.click.yahoo.com/YoVfrB/XP.FAA/uetFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|