PLOTTEXT - how to write this??

shanki99

Well-Known Member
#1
PlotText("FFF", LastValue(BarIndex())+1, Line1, colorOrange);

How to convert this line of AFL so that it shows:-

1. Shows "FFF" at the end of last trading day + Value in-terms of Rupees of Line1 (for eg FFF 723.8)

2. Shows "FFF" only after 10am current day today


I tried my level best with Ref (c,-1) etc but in vain...seems iam too old to learn these simple codes :(

:clapping:Great if someone can help me out....
 
#3
PlotText("FFF", LastValue(BarIndex())+1, Line1, colorOrange);

How to convert this line of AFL so that it shows:-

1. Shows "FFF" at the end of last trading day + Value in-terms of Rupees of Line1 (for eg FFF 723.8)

2. Shows "FFF" only after 10am current day today


I tried my level best with Ref (c,-1) etc but in vain...seems iam too old to learn these simple codes :(

:clapping:Great if someone can help me out....
this is for you, hope this help

PlotText ("FFF "+ Name()+" "+C, LastValue(BarIndex())+1,C[BarCount-1], colorOrange,colorBlack);
 
Last edited:

Similar threads