I am trying to create a strategy using my custom indicators in order to run some basic backtests.
My indicators are based on conditional statements, and when they are met then the current bar is marked with a diamond above or below the bar depending on if it is a buy or sell signal.
Basically, the strategy I want to build would backtest potential trades as follows:
I will use a Black Sell as the example (a black diamond above the current bar).
1) When Black Sell is true, then
2) Enter a (short) limit order at (bottom of current bar - 1tick) ( Low[0]-(TickSize*1))
3) The profit target, or exit, would be 5 for this example: (Low[0]-(TickSize*5))
4) The Stop out would be (High(0)+(TickSize*1)
If price never hits the entry point before the stop is hit, then nothing happens in regards to trade entry and nothing is recorded.
Is it possible to use the Strategy Wizard in order to create this strategy, or would this be an advanced scripting project?

Comment