Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 1048
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How can I make an indicator open with a specific template? ChartApplyTemplate is not suitable, because the indicator should be in one file.
Create the appearance of the chart by the indicator itself.
For example, after adding an indicator, the graph should be converted to "Line Charts" mode. Which function can I use to set it?
ChartSetInteger()
Although you didn't explain what Line Charts is, and I'm not sure I understand what you mean.
ChartSetDouble()
ChartSetInteger()
Although what Line Charts you didn't explain, and I'm not sure I understand what you mean.
Bar Charts (Alt+1); Candlesticks (Alt+2); Line Charts (Alt+3);
From the documentation
{
int poz = OrderSend(Symbol(),OP_SELL,lot,Bid,slip,0,0,NULL,magic,Red);
Sleep(10000);
poz = OrderSend(Symbol(),OP_SELL,lot,Bid,slip,0,0,NULL,magic,Red);
Sleep(10000);
poz = OrderSend(Symbol(),OP_SELL,lot,Bid,slip,0,0,NULL,magic,Red);
Sleep(10000);
poz = OrderSend(Symbol(),OP_SELL,lot,Bid,slip,0,0,NULL,magic,Red);
Sleep(10000);
poz = OrderSend(Symbol(),OP_SELL,lot,Bid,slip,0,0,NULL,magic,Red);
timeBar=iTime(Symbol(),Period(),1);
}
If the indicator runs the code for a long time, are the ticks skipped during this time or queued for processing?