Case study – creating custom building block – ROC indicator
In this short case study, I will show you how to create a custom block and then how to use it in a real trading strategy. Possibility of extending StrategyQuant with your custom-building blocks without programming is a unique feature that no other software offers.
Firstly let me explain what the custom block is. Every trading strategy consists of entry filters, entry conditions, exits, different calculations, etc. If you disassemble the trading robot into elementary pieces then you will get building blocks. To say it simply, they are bricks which create trading robots.
Defining building blocks which might be used during a strategy creating process
Before we proceed to our practical example let me explain which kind of custom blocks we can add.
Condition example: Entry filter for uptrend: Close > MovingAverage(200)
The output is True/False
Price level example: MonthlyHighestLevel
The output is price level
Value example: ROC indicator
The output is a number which we can use for other calculations/conditions.
Creating ROC indicator
The ROC indicator returns the value of the price percentage change during the certain period. If the period is 5 and the price drops by 5% during the last five days then the indicator output is -5. In case of price rise, it would be 5.
ROC formula:
ROC = [(Close – Close n periods ago) / (Close n periods ago)] * 100
Adding the ROC indicator as the custom block:
Firstly, we open “Custom block” editor.
Add new custom block – type value:
Add custom block parameters
Define ROC formula in SQ
Now you can start using ROC custom block in your trading strategies
You can also download the ROC custom block here and import it into StrategyQuant.
In the next article, I will show you a practical example of how to use ROC custom block in the trading strategy.
This is a great feature for most users. The process of extending sqx was so time-demanding and error prone given the need of implementing so many templates and both the java and the mql. Just as a possibility for future improvements, the possibility of using previous values of the indicator being defines would be awesome, as many indicators use its previous value for calculations. Anyways thank you for this feature!!
A StrategyQuant strategy is never conjured whole. The platform assembles it from parts you supply, then searches the combinations for something that works. Those parts stack in a fixed order …
Most traders spend years searching for the perfect strategy. Brandan took a different path—he built a repeatable research process instead. In our latest interview, Brandon from Trivium System Trading shares …
Many traders already have a trading strategy—they just don’t realize it. Buying stocks after a sharp drop. Avoiding weak market conditions. Selling after a rebound. These decisions often rely on …
This is a great feature for most users. The process of extending sqx was so time-demanding and error prone given the need of implementing so many templates and both the java and the mql. Just as a possibility for future improvements, the possibility of using previous values of the indicator being defines would be awesome, as many indicators use its previous value for calculations. Anyways thank you for this feature!!