Ploting at a specific level

Questions about MultiCharts and user contributed studies.
arjfca
Posts: 1292
Joined: 23 Nov 2010
Has thanked: 725 times
Been thanked: 223 times

Ploting at a specific level

Postby arjfca » 24 Nov 2010

Hello

Newby with MC and first post on the forum.

I want to put a cross under a bar that as the lowest low from the last 10 periods
Variable: TLLow(0);
TLLow = Low;

If barnumber >10 then
Begin
if SignificantLow then
begin
print (date, " ", time, low:0:5, " ", tllow:0:5);
Plot1( TLLow -.0001, "LLow", Black, Default, 2); end;
end;
It work, but the cross that I plot is not under the low, but at another place over the bar

MT
Attachments
PlotEraticPlace.jpg
(52.36 KiB) Downloaded 203 times

User avatar
TJ
Posts: 7743
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Ploting at a specific level

Postby TJ » 24 Nov 2010

right click on the chart

--> Format Studies --> Format --> Scaling --> Same as Instrument.

arjfca
Posts: 1292
Joined: 23 Nov 2010
Has thanked: 725 times
Been thanked: 223 times

Re: Ploting at a specific level

Postby arjfca » 24 Nov 2010

Many thanks TJ


Return to “MultiCharts”