-
Hi, is there a guide for adding new custom strategies and indicators ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There is no guide yet, as the steps are not finalized. In general, you should check the structure of other strategies. In general, to create a new strategy, you can:
Adding a new indicator to strategy:
Updating strategy class:
Testing new strategy:
Proposing strategy to be part of EA:
Having said above, I'll try to help and implement this mentioned indicator and let you know how it goes. DemoUpdate: I've already generated the initial strategy. And I'm attaching a 3 minute quick textual video how the strategy has been created: It's a bit code mess, but each version is going to simplify the process. Hope that helps! |
Beta Was this translation helpful? Give feedback.
There is no guide yet, as the steps are not finalized. In general, you should check the structure of other strategies.
In general, to create a new strategy, you can:
Stg_X.mqh
(strategy class), find a line withSetIndicator()
and point it to your existing indicator class. If your indicator is new and needs to be added, check the separate steps below.Adding a new indicator to strategy: