thanks
- #54,020
- Edited 5:52pm Aug 27, 2022 5:09pm | Edited 5:52pm
- Joined Sep 2019 | Status: Trader | 1,207 Posts
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} Maybe you want Mini Charts that allow you to display whatever TF you wish on your main chart. {image}Ignored
Disliked{quote} Thanks for the helps... please this indicator does not remove the line objects from the chart, I have tried to see what is wrong. what should I add or remove from the code to make the objects removed when the indicator is detached from chart? Thank you.{file}Ignored
DislikedPlease I’m not a programmer but I always like to limit the length of lines on my charts using about 500 bars for the calculations in order not slow down the system but I don’t know how to do this. How can I limit the number of bars used for drawing of the lines with the following code: - void deinit() { } void start() { int counted = IndicatorCounted(); if (counted < 0) return (-1); if (counted > 0) counted--; int limit = Bars-counted; for (int i=0; i < limit; i++)Ignored
Disliked{quote} Here is candle_formation. However, other thing, I need source code of v.1.6 to take a look. {file}Ignored
Disliked{quote} Quoting Sincere007 {quote} Hey Bluerain, This may se.. This one fixed Divided by Zero issues. It seems there is formular ( H-C ) / ( H-L) and when H-L is same, it will cause this issue. I went over and fixed all divisions. {file}Ignored
Disliked{quote} You are welcome at FF -I see you are asking for an EA based on super trend indicator and more particularly lower/higher TFS dependent also you seems open either for mt4 or mt5 or both,i guess do you ever tested and demoing like the logic you describing there are variety of super trend indicators around everywhere on various logic's (formula,math,methods) so i think you may,first to chose what type of super trend you are interested in demonstrate with example picture/s - instead pushing FF members to out decide in what of meta terminal...
Ignored
Disliked{quote} Hello Dear BlueRain Dear Many thanks about your Kindly answer . Ok, I will test it and answer you about this projectBest Regards siamak
Ignored
Disliked{quote} Thank you for the help. Please, in case of another case like that, what exactly should I address. I see that you deleted the "MyPeriod" comment. Was that what fixed it. I am learning please.Ignored
DislikedHi, I have this attached indicator which works alright. The problem is that it doesn't only alert the 4th candle, but also every candle afterward, which gives too many false alerts. Could someone with coding skills please kindly help to adjust it? Thanks a lot. {file}Ignored
Disliked{quote} try this .. extern int maxbar = 500; . . . void start() { int counted =maxbar; if (counted < 0) return (-1); if (counted > 0) counted--; int limit = Bars-counted; for (int i=0; i < limit; i++) or you can use this void start() { for (int i = MathMax(maxbar -1-IndicatorCounted(),1); i>=0; i--)Ignored
Disliked{quote} Hello Dear BlueRain Sorry to Bother you again . Dear I Test your EA and I think that there is a problem about add MagicNumbers , I can not add other MagicNumber and also didn't accept ; for adding MagicNumbers . If possible pls check it and amend for me . Best Regard SiamakIgnored