forex software

Create and Test Forex Strategies

forex software

eas-guide:entry-rules

This is an old revision of the document!


Entry Rules

For each Entry Rule in EA Studio you can choose an indicator to use, indicator logic and indicator parameters. EA Studio will use these settings to draw the indicator line and evaluate if it should open a position and in what direction.

Each of the Entry Rules is evaluated in each bar. The evaluation of each Entry Rule when backtesting results in the “answer” or “vote” of that entry rule if the strategy should open a position in a certain direction. For example the evaluation of an Entry Rule might result in a “vote” that is “short: false; long: true;”. This means according to this rule the strategy should enter a long position.

An practical example of such entry rule is if you use a Momentum indicator with a logical rule “Momentum rises” that means that when the Momentum value becomes higher than the previous one the indicator will allow entering a long position.

However we wanted EA Studio to open a position only when all Entry Rules' requirements are met. So this means if we have two Entry Rules in the strategy and one “votes” for opening a long position and at the same time another “votes” to open a short one EA Studio will not act and will not open a position.

You have to set only the rules for the long positions. EA Studio will set the rules to enter a short position automatically. It will do so by mirroring the long rules. You can see the short entry rules by clicking the Short entry tab above the Entry Rule list.

Examples

No entry indicators

No entry rules

No entry rules

In this case EA Studio will not open a position because there are no rules to determine the direction of the entry.

Add/Remove Entry Rules

You can add Entry Rules by using the + Add a new entry rule button. You can't have more than four Entry Rules. The button + Add a new entry rule button will become inactive when this limit is reached. When you click the button, the program will open an Entry Rule Indicator panel at the left side of the Editor. You can choose an indicator there and set its Logic and parameters.

To remove an Entry Rule just click the X button on in the top-right corner of its box.

Using a Single Entry Rule

All of the indicators express a logical condition that can either be fulfilled or not fulfilled. When creating a strategy, you should cover the Long trading case and the program will assume the reverse rules for the Short trades. In this sense the strategy uses symmetrical conditions for long and short positions. The general case is that the condition is fulfilled for a short position but not for a long one or vice versa. In some cases, the condition can be fulfilled in both directions of trade at the same time (when using ADX for example).

One long entry rule

One short entry rule

The strategy will trade Long when “AC rises” and will trade Short when “AC falls”. You can confirm that on the Indicator chart at the Report page.

Two or more entry rules

When a strategy has more than one indicator, it will trade only if all indicators give permission for entry in the particular direction.

Two long entry rules

Two short entry rules

In that example we have two indicators. Following the strategy logic, the program will:

  • trades Long - when: “AC rises” and “RSI changes its direction upward”. If one of the rules is not satisfied, the strategy will not trade.
  • trades Short - when: “AC falls” and “RSI changes its direction downwards”. If one of the rules is not satisfied, the strategy will not trade.

Ambiguous rules

There are cases when the strategy indicators produce equal signals in both directions. Let's see the following example:

Ambiguous long entry rules

Ambiguous short entry rules

That strategy will not trade because its rules give simultaneously permissions for both - Long and Short entries. If you set this example in the app and switch to the Short rules, you will see they will be equal to the Long rules. Since the conditions are ambiguous, the strategy acts in the safe way and prevents all entries.