How to plot only

Questions about MultiCharts and user contributed studies.
Fra
Posts: 6
Joined: 31 Jan 2007

How to plot only

Postby Fra » 12 Feb 2007

today's pivot and not all days before ?

SP
Posts: 465
Joined: 06 Feb 2006
Has thanked: 36 times
Been thanked: 286 times

Postby SP » 12 Feb 2007

You could try it with
if date=currentdate then begin

Code: Select all

if date=currentdate then begin


Plot1((CloseD(1)+4*HighD(1)-2*LowD(1))/3,"R2");
Plot2((2*(HighD(1)+CloseD(1))-LowD(1))/3,"R1");
Plot3((2*(LowD(1)+CloseD(1))-HighD(1))/3,"S1");
Plot4((CloseD(1)+4*LowD(1)-2*HighD(1))/3,"S2");
Plot5((CloseD(1)+HighD(1)+LowD(1))/3,"Pivot");
end;

Fra
Posts: 6
Joined: 31 Jan 2007

Postby Fra » 12 Feb 2007

thanks SP

it works but value looks different from Floor trader pivot...do you know why ?

i used it on ES H7

Fra
Posts: 6
Joined: 31 Jan 2007

Postby Fra » 12 Feb 2007

sorry my mistake...thanks it works fine !


Return to “MultiCharts”