How can i get a Percent Change Chart

Questions about MultiCharts and user contributed studies.
User avatar
gautama2
Posts: 96
Joined: 10 Jul 2007
Has thanked: 1 time
Been thanked: 1 time

How can i get a Percent Change Chart

Postby gautama2 » 09 Apr 2008

Hello,

how can i realize Percent Change Chart in MC?
In TS it was (is?) possible to do this for tracking relative performance of sectorindices etc.

Also it is important to be able to select anchor bar from which the percent change will be calculated.

If it is not possible could you pls. make it possible?

Regards
Robert

User avatar
gautama2
Posts: 96
Joined: 10 Jul 2007
Has thanked: 1 time
Been thanked: 1 time

Postby gautama2 » 13 Apr 2008

Hi,

nobody who knows how i can make Percent Change Chart?

wullenweber helmut
Posts: 60
Joined: 21 Dec 2007
Has thanked: 3 times
Been thanked: 9 times

Postby wullenweber helmut » 15 Apr 2008

@gautama

Did you try something like this?

input: StartDate(1080102);
var: Multi1(0),Multi2(0),Multi3(0);

if date = StartDate then begin
Multi1 = 100/close of data1;
Multi2 = 100/close of data2;
Multi3 = 100/close of data3;
end;

if date >= StartDate then begin
Plot1( close data1* Multi1);
Plot2( close data2* Multi2);
Plot3( close data3* Multi3);
end;
Attachments
PercChng.png
(40.58 KiB) Downloaded 367 times

User avatar
gautama2
Posts: 96
Joined: 10 Jul 2007
Has thanked: 1 time
Been thanked: 1 time

Postby gautama2 » 15 Apr 2008

@wuellenweber helmut

Thank you. This is what i was looking for. I thought it is built-in like it is in TS.


Return to “MultiCharts”