Signals on multi data issue ?

Questions about MultiCharts and user contributed studies.
User avatar
Smoky
Posts: 507
Joined: 03 Dec 2010
Location: Thailand
Has thanked: 97 times
Been thanked: 115 times

Signals on multi data issue ?

Postby Smoky » 21 Aug 2016

I use a renko chart resolution 1 tick input OHLC with 5 data series.

In Signal code :

I compute some data on data3 store in RSI3 var and want to read previous value in last Box.
I make some code to reproduce the issue, i store Symbol_CurrentBar in this RSI3 var for better undestanding.

Code: Select all

vars: intrabarpersist RSI3(0,data3);

//first tick on new box
if barstatus(3)=0 then
begin
// put computation in var
RSI3 = (Symbol_CurrentBar) data3;

//print last value and new value Symbol_CurrentBar here
//
messagelog("Previous box var ",numtostr(RSI3[1],0) ," / new var ",numtostr(RSI3,0) );

end;
printer : last four lines, ok 1884 boxes in data3, previous box 1883 ok fine !

Previous box var 1883 / new var 1884
Previous box var 1883 / new var 1884
Previous box var 1883 / new var 1884
Previous box var 1883 / new var 1884

in offline mode, Barstatus(3)= 0 is trigger four time by box ! (seems O,H,L,C)

barstatus(3) = 0 would be trigger only on the first tick => open of new box
only one ligne by box in messagelog (one trigger)

same for last tick here
barstatus(3) = 2 would be trigger only on last tick => close of the box
only one ligne by box in messagelog (one trigger too)


need help please, my signals don't work on multi datas.

User avatar
Kristina MultiCharts
Posts: 63
Joined: 04 Sep 2014
Has thanked: 5 times
Been thanked: 34 times

Re: Signals on multi data issue ?

Postby Kristina MultiCharts » 22 Aug 2016

Hi,

Please send the following information to support@multicharts.com so we could study the case with your studies and setup:

1) What exact version and build number of MultiCharts are you running? (in MultiCharts go to Help tab-> About)
2) workspace you are using;
3) in QuoteManager select the symbol you are using, make a right click on it->Export data->Export instrument (with data). Send us the Qmd export file for analysis;
4) in PowerLanguage editor->File->Export->export with dependent functions the studies you are using in the workspaces you are providing. Send us the study export file.
5) Please attach more detailed problem description and highlight the problem on the screenshots.


Return to “MultiCharts”