Stocks News

Sapphire Strat Maker – ENUM Document – Trading Strategy – March 14, 2024

1. Introduction

this documentation for sapphire strat maker and Sapphire Strat Maker Alt (Free) Expert Advisor – This is an EA that allows you to create your own strategy without coding. That’s the beauty of this expert advice. Create your own strategy, be creative and no longer be tied to a single strategy. Optimize the parameters to find the best set and you are ready to go!

freely contact me If you have questions about the article or need help creating your strategy.

2. Blog post

3. ENUM document/value

This document is available in the following format: ENUM_TYPE = integer representation. Let us take the parameters of a moving average as an example. Document – Indicators (to insert the correct parameters):

In the table below, we can see that the integer representation for MODE_SMA in ENUM_MA_METHOD is 0.

We can also see that 1 is the integer representation for PRICE_CLOSE in ENUM_APPLIED_PRICE.

Therefore, this moving average is a simple 6-period moving average applied to the closing price series without any bar movement.

3.1. ENUM_MA_METHOD

    • MODE_SMA = 0
    • MODE_EMA = 1
    • MODE_SMMA = 2
    • MODE_LWMA = 3
    • PRICE_CLOSE = 1
    • PRICE_OPEN = 2
    • PRICE_HIGH = 3
    • PRICE_LOW = 4
    • PRICE_MEDIAN = 5
    • PRICE_TYPICAL = 6
    • PRICE_WEIGHTED = 7

    • VOLUME_TICK = 0
    • VOLUME_REAL = 1

    • STO_LOWHIGH = 0
    • STO_CLOSECLOSE = 1

If you have any questions please feel free to contact me.

Related Articles

Back to top button