Attachments forums

List of attachments posted on this forum.


All files on forums: 135733

Re: Daily Open Line indicator modification

Anonymous, Wed Mar 29, 2017 5:15 pm

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
All files in topic