[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 1075
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
Hello all. I need a momentum histogram. I was wondering if anyone could give me a histogram.
Thank you.
Hello all. I need a momentum histogram. I was wondering if anyone could give me a histogram.
Thank you.
Line or histogram, doesn't change the point, except visually.
That's what I'm saying, visuals are needed
Is this function which detects an excessive movement correct?
extern int CandleVolume=60 - if the size of the previous candle is more than 60 pips
------ function checking the volume of the previous candle
int CheckVolume()if (volume > CandleVolume) return (-1);
}
-------- check as follows
if(CalculateCurrentOrders(Symbol())==0 && CheckVolume()==1)
{CheckForOpen();}
Another question: I am trying to check the previous bar. Buy check - Ask is higher than the High of the previous bar + spread. Sell check - Bid is lower than the Low of the previous bar minus the spread. How correct is this function? Unfortunately, it doesn't work.
Another question: I am trying to check the previous bar. Buy check - Ask is higher than the High of the previous bar + spread. Sell check - Bid is lower than the Low of the previous bar minus the spread. How correct is this function? Unfortunately, it does not work.
Another question: I am trying to check the previous bar. Buy check - Ask is higher than the High of the previous bar + spread. Sell check - Bid is lower than the Low of the previous bar minus the spread. How correct is this function? Unfortunately, it does not work.
Thank you very much. It's working. Goes to my knowledge base )))) Please advise what to do with the function that defines the size of the previous candle?
extern int CandleVolume=60 - if the size of the previous candle is more than 60 pips
------ function that checks the volume of the previous candle
int CheckVolume()if (volume > CandleVolume) return (-1);
}
-------- check as follows
if(CalculateCurrentOrders(Symbol())==0 && CheckVolume()==1)
{CheckForOpen();}
I would not use spreads at all, because they often float...
This is not a problem. With every tick we request a new spread, and the problem is solved - we will always have a fresh spread on every tick. If you work in a brokerage company with floating spreads, it would not hurt to ask for a mini-level with every tick.