Re: Daily Open Line indicator modification

22
mladen wrote:
No I did not
I asked that you check what error do you got in in experts or journals tab of the terminal if the indicators you are using are not working
till now its working except Yesterday close
 
i need auto column when it cross 25 symbolexample: if i add 40 symbol then it should be, 1st column 25 symbol and 2nd column 15 symbolif i add 70 symbol then it will be 25  25 and 20 in total 3 column
Attachments

Re: Daily Open Line indicator modification

23
vegadigitalco wrote:
till now its working except Yesterday close
 
i need auto column when it cross 25 symbolexample: if i add 40 symbol then it should be, 1st column 25 symbol and 2nd column 15 symbolif i add 70 symbol then it will be 25  25 and 20 in total 3 column 
These are the possible choices for MarketInfo() functionl

revise what choices you have attempted to add to MarketInfo() array (the info2 array) and when you remove the unsupported modes, it should work

Re: Daily Open Line indicator modification

24
mladen wrote:
These are the possible choices for MarketInfo() function


revise what choices you have attempted to add to MarketInfo() array (the info2 array) and when you remove the unsupported modes, it should work
Thanks mladen for your given information

But what about auto column , please help me to make next auto column,
I have tried to attached this indicator twice time with manual input of symbol on same chart but not success
It shows only single indicator

Please modified or help me to make success


Re: Daily Open Line indicator modification

26
vegadigitalco wrote: Thanks mladen for your given information But what about auto column , please help me to make next auto column, I have tried to attached this indicator twice time with manual input of symbol on same chart but not success It shows only single indicator Please modified or help me to make success
mladen sorry to disturb u again

1 last help please, right now its auto symbol selection from market watch, can u help me to add manual input of symbols with selection of true false

true = auto symbol selection 
false = manual input of symbols

i added  this code  

Code: Select all

extern  bool   Autoselection   =  true ;
extern string Manualsymbols ="EURUSD,GBPUSD,EURAUD,CHFJPY";
and in 
void OnTimer()
 {
 
 int currentSymbolsTotal=SymbolsTotal(true);
 if (Autoselection == true) 
 {
 if(symbolsTotal!=currentSymbolsTotal)
 
 {
 ArrayResize(marketWatchSymbolsList,currentSymbolsTotal);
 for(int i=0;i<currentSymbolsTotal;i++) 
 marketWatchSymbolsList[i]=SymbolName(i,true);
 deleteScale(symbolsTotal,currentSymbolsTotal);
 symbolsTotal=currentSymbolsTotal;
 }
 }
 if (Autoselection == false) 
 { 
 StringSplit(Manualsymbols,',',MarketWatchSymbolsList);
 }
 }
but its not working getting error 
i have attached file and image


Who is online

Users browsing this forum: No registered users and 13 guests