Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 1073
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
Good day all!!! Let's assume there is a buffer in the indicator that I need to use in the calculation of other indicators. I want to use it in calculation of other indicators. How to make the indicator buffer be present but it doesn't show any icons on the chart? Thanks all!!!!
Look at SetIndexStyle() help and there are line drawing styles and DRAW_NONE
Look at the SetIndexStyle() help function and there are line drawing styles and DRAW_NONE
You can't see them because the number of buffers is specified as 2. And there is no possibility to apply to buffer 3 and 4 from another indicator.... Which surprises me......
Well, only DRAW_NONE then.
I just don't understand why you need to put an indicator on a chart that is called via iCustom...
Well only DRAW_NONE then.
{
The bool fc;
for (int i=OrdersTotal()-1; i>=0; i--)
{
if(OrderMagicNumber()!=magic || OrderSymbol()!=Symbol()) continue;
if(OrderType()==OP_BUY && OrderMagicNumber()==magic)
{
fc=OrderClose (OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_BID),slip);
buycloseprice=0.0;
tc=OrderCloseTime();
}
}
}
Vladimir! Add OrderSelect() to the beginning of the loop