Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 195
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
The library. The library has everything for that. Sections 4.3 and 4.6.
Vadim: anecdote.
The zootechnician inseminates the cows with a syringe and leaves. A beautiful woman waits at the exit and asks for a kiss.
Hello!
I'm asking for help from professionals.
Please advise how to implement the function of redrawing the lines after the appearance of a new candle. and for different timeframes.
The idea of the indicator is very simple - it looks at high and low of the previous candle, adding 50 points to high and 50 points to low.
Thank you.
It's from a textbook.
help with syntax
int k=OrdersTotal();
//+---set orders if there are no orders
if (k==0) {OrderSend(Symbol(),OP_BUYSTOP,v,PriceBs+Tp*Point,0,Sl,PriceBs+2*Tp*Point,NULL,mn,0,Red)
OrderSend(Symbol(),OP_SELLSTOP,v,PriceSs-Tp*Point,0,Sl,PriceSs-2*Tp*Point,NULL,mn,0,Gold) ; }
will both orders be placed or just one?
I need owls to place two pending orders if there are no orders
...
will both warrants be placed or one?
There will be 0, 1 or 2 orders.
Hello!
I'm asking for help from professionals.
Please advise how to implement the function of redrawing the lines after the appearance of a new candle. and for different timeframes.
The idea of the indicator is very simple - it looks at high and low of the previous candle, adding 50 points to high and 50 points to low.
Thank you.
As soon as the new candle arrives, it will re-draw itself.
It will be 0, 1 or 2 orders.
it needs to put both orders when there are no orders
I do not understand how it works. According to the tutorial, it looks like it will place the first order and the second only if there are orders, but how should I make it place both of them if the condition is fulfilled and none of them if the condition is not fulfilled?
i need it to place both orders when there are no orders
or i did not set the condition correctly? i do not understand how it works if in the tutorial it looks like it will place the first order and the second only if there are orders, but how should i make it place both if the condition is met and none if the condition is not met
int x=0, a=0, b=0
if (x==0) {
}
what should I write in brackets, so that a takes value 1 and b takes value 1 ?
int x=0, a=0, b=0
if (x==0) {
}
what should I write in brackets, so that a takes value 1 and b takes value 1 ?
The easiest way is to write {a=1; b=1}, but you can invent some nice multi-page formula to calculate them if you really want to.
Who is in the know, please explain:
Why do crosses have a much larger spread?
Thank you.