Formatting studies in Scanner window

Questions about MultiCharts and user contributed studies.
HawkArps
Posts: 5
Joined: 08 Nov 2011
Has thanked: 4 times

Formatting studies in Scanner window

Postby HawkArps » 27 Mar 2012

Using the 'Real-Time Market Scanner' is it possible to format different columns of the same study to plot different number of decimal places? If so, how? Can this be done in Power Language?

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

Re: Formatting studies in Scanner window

Postby SP » 28 Mar 2012

Plot it as string and set it as "same as symbol" under properties.

Code: Select all

inputs: mDec1 (2),mDec2(0);
vars: barcounter(0),t1(""),t2("");

barcounter = barcounter+1;

t1 = numtostr (close,mDec1);
t2 = numtostr (barcounter ,mDec2);
Plot1 (t1,"Close");
Plot2 (t2,"Barcounter");


Return to “MultiCharts”