|
Arlington
Posts: 18 since Feb 2020
Thanks Given: 6
Thanks Received: 3
|
If you add the code below to the bottom of the "Floor Trader Pivots" indicator code, it will give you labels (of the values) at the beginning of the pivot lines. (For intra-day charts)
if d>d[1] then begin
if Plot_5or7 = 7 then begin
value1 = Text_New(Date, Time, R3, numtostr(R3,2));
Text_SetStyle(value1,0,1);
Text_setcolor(value1, red);
end;
value2 = Text_New(Date, Time, R2, numtostr(R2,2));
Text_SetStyle(value2,0,1);
Text_setcolor(value2, blue);
value3 = Text_New(Date, Time, R1, numtostr(R1,2));
Text_SetStyle(value3,0,1);
Text_setcolor(value3, yellow);
value4 = Text_New(Date, Time, PP, numtostr(PP,2));
Text_SetStyle(value4,0,1);
Text_setcolor(value4, cyan);
value5 = Text_New(Date, Time, S1, numtostr(S1,2));
Text_SetStyle(value5,0,1);
Text_setcolor(value5, red);
value6 = Text_New(Date, Time, S2, numtostr(S2,2));
Text_SetStyle(value6,0,1);
Text_setcolor(value6, blue);
if Plot_5or7 = 7 then begin
value7 = Text_New(Date, Time, S3, numtostr(S3,2));
Text_SetStyle(value7,0,1);
Text_setcolor(value7, yellow);
end;
end;
|