1 (edited by bharatw 2007-06-16 15:22:28)

Topic: Need to test this strategy

Market: EURUSD 30 min
Spread: 3 pips
Swap Number: 1 pip

Hello Friends,

I need to test a particular strategy. Can anyone help me identify the logic that I should define in the FSB to test the strategy.

Opening point of the position:
When 50 EMA crosses down through 100 EMA initiate a sell signal
Stop Loss: 20 pips
Closing point of the position:
Limit : 50 pips

I understand FSB will automatically generate the vice versa position as well

Opening point of the position:
When 50 EMA crosses shoots up through 100 EMA initiate a buy signal
Stop Loss: 20 pips
Closing point of the position:
Limit : 50 pips

Re: Need to test this strategy

It is easy:

A same direction signal - Does nothing
An opposite direction signal - Reverses the position or Does nothing

[Opening point of the position]
Bar Opening
     Enter the market at the beginning of the bar
     Base price  -  Open

[Opening logic condition]
Moving Averages Crossover
     The Fats MA crosses the Slow MA upward
     Base price  -  Close
     Fast MA method  -  Exponential
     Slow MA method  -  Exponential
     Fast MA period  -  50
     Slow MA period  -  100
     Fast MA shift  -  0
     Slow MA shift  -  0
     Use previous bar value  -  Yes

[Closing point of the position]
Stop Limit
     Exit at Stop Loss or at Take Profit level
     Stop Loss  -  -20
     Take Profit  -  50