- Search Metals Mine
-
jblanked replied Apr 25, 2023As soon as it breaks up what? As soon as it breaks down what? As soon as price buys above the high of the 8am candle...?
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 25, 2023We need the .mq4 file in order to help you
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 25, 2023Without prior coding knowledge, ChatGPT won't be that helpful. Use ChatGPT to do the lazy work, like creating simple if statements or checking work. Its also great for ideas!
MT4/MT5 and ChatGPT - Leveraging on AI Opportunities
-
jblanked replied Apr 24, 2023Many errors/warnings with the EA and I think its a bit complicated to do what you need it to do. Its also using Indicator functions (start, init,deinit) instead of Expert Advisor functions (OnInit,OnDeInit,OnTick) Here's a quick version I made, ...
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 23, 2023What are the requirements?
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 22, 2023No it should use the same resource consumption as the total of all 3 indicators (in my opinion)
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 22, 2023Without the source code, most coders here won't be able to help you
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 22, 2023If you have the source code of all 3 indicators, you can combine them into 1. This would really only be useful if you wanted to load all of the indicators at once, instead of them separately. It would also make it easier for others to use the ...
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 22, 2023Hmmm might be best just to code your manual/live/indicator strategy into an EA and back test it using the strategy tester
Software with historical data to backtest in live way
-
jblanked replied Apr 22, 2023Draw on the chart (and give us a screenshot) of what you mean and include the requirements of the EA.
Any Grid EA that trades when the drawdown % = Fibo sequence?
-
jblanked replied Apr 22, 2023Please read the post again; remember I said you will need to make some edits and that its not working as intended: url
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 22, 2023Not unless you have the .mq4 file
Please help in integrating Indicators into EA please
-
jblanked replied Apr 21, 2023Seems like this was made using a code generator/EA builder... because of the naming conventions, its hard to understand what its supposed to do or what the issue is. The arrows look like they're working to me? image Best of luck
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 21, 2023The reason why it wasn't working is because of the compile errors/warnings: image This is the main issue: image Also void functions don't return a value and some of the variables used had the wrong data type declaration. I fixed the ...
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 21, 2023It can be done but there will be an issue because not every broker uses the same index names.. for example on FTMO there's US30.cash, but on MFF its just US30. Same for the other indices
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 21, 2023This trades already? I ran it in the backtester.
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 20, 2023Haha no worries you're not nagging. For it to only open one trade just add in something like: if(OrdersTotal() ==0) { // do rest of code }
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 20, 2023I fixed the warnings and changed it from the indicator functions (init, start, etc) to expert advisor functions (OnInit, OnTick, etc) I fixed the order send issue too, you weren't using the ATR before Still a bit more issues with the code, but this ...
I will code your EAs and Indicators for no charge
-
jblanked replied Apr 20, 2023Here try this... file It's working like 90% of how you intend for it to work, but it will need some edits. It also is returning the point value, not pip image What I did was pretty close but it needs to read each bar in between the start time and ...
I will code your EAs and Indicators for no charge