No I did notvegadigitalco wrote:
did u attach the file?
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
No I did notvegadigitalco wrote:
did u attach the file?
till now its working except Yesterday closemladen 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
These are the possible choices forvegadigitalco 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
MarketInfo() functionl
MarketInfo() array (the info2 array)
and when you remove the unsupported modes, it should workThanks mladen for your given informationmladen 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
mladen sorry to disturb u againvegadigitalco 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
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);
}
}
PERIOD_D1
in MarketInfo()
call. Those parameters do not exist for MarketInfo() functionMarketWatchSymbolsList
to marketWatchSymbolsList
Happy tradingvegadigitalco wrote:
Thank You very Much Mladen
it help me lot