Need help making small updates to this indicator.
Yes I know that's where i initially got it made by a freelancer... Right now I'm learning MQL to do it myself, so I was hoping to get some help to further understand my MQL around here but silly me right.
Filmon Yohannes:
Yes I know that's where i initially got it made by a freelancer... Right now I'm learning MQL to do it myself, so I was hoping to get some help to further understand my MQL around here but silly me right.
You can hire freelancer to explain you what to do and how does it works
Yes I know that's where i initially got it made by a freelancer... Right now I'm learning MQL to do it myself, so I was hoping to get some help to further understand my MQL around here but silly me right.
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,
Can someone help please with my indicator here, want to add one new simple mode to it. The indicator draws vertical lines based on volume indicator.
The new mode lets call it 'Opposite Mode' as the name suggest it basically makes the indicator draw opposite of the two daily vertical lines the indicator normally draws. See example image below, the tick means
where the new opposite mode draws where X (cross) are the normal mode. My coding skills are pretty much basic at this stage but see the source code below it may be as easy as making few changes to these two lines of codes in order to create a new reverse mode of the original function.
curr_lines.m_line_up_curr = MathMax(high - pips_diff * Point, low + pips_diff * Point);
curr_lines.m_line_dn_curr = MathMin(high - pips_diff * Point, low + pips_diff * Point);