Manual Data Input Field

Questions about MultiCharts and user contributed studies.
brunor
Posts: 65
Joined: 11 Feb 2013
Has thanked: 24 times
Been thanked: 6 times

Manual Data Input Field

Postby brunor » 06 Feb 2014

I am using this code to highlight which symbols I want on a watch list. I set the constrain value to "1' on scanner "pre-scanning" for symbols of interest. Is it possible to code this with direct input to a data field; where I could simpy type a value of 0 or 1 in a column without having to change the input value of the study for each symbol (see attached)?

Code: Select all

Inputs:
Watchlist(0);

If WatchList = 1 then
BEGIN
Plot1("1");
SetPlotBGColor( 1, blue);
SetPlotColor(1, white);
END
else
If WatchList = 0 then
BEGIN
Plot1("0");
SetPlotBGColor( 1, red) ;
SetPlotColor(1, white);
END
Thanks for your assistance.
Bruno
Attachments
WatchList.jpg
(104.06 KiB) Downloaded 253 times

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: Manual Data Input Field

Postby Henry MultiСharts » 07 Feb 2014

Hello brunor,

There is no way to do direct input of the study inputs in the scanner window. It can be done only via Format study window (for a single instrument or for all instruments).


Return to “MultiCharts”