No prior programming experience at all. Attempting to learn EasyLanguage for about 1 week.
Having problems trying to combine several TradeStations Signals into my first Trading System.
Example of TradeStation's Signals:
{*******************************************************************
Description : Bollinger Bands Long Entry
Provided By : Omega Research, Inc. (c) Copyright 1999
********************************************************************}
Inputs: Length(9), StdDevDn(2), BarsBlw(2);
Variables: BBBot(0);
BBBot = BollingerBand(Close, Length, -StdDevDn);
If CountIF(Close < BBBot, BarsBlw) = BarsBlw Then
Buy ("BB") Next Bar at BBBot Stop;
{*******************************************************************
Description : Bullish Engulfing Pattern
Provided By : Omega Research, Inc. (c) Copyright 1999
********************************************************************}
Inputs: Length(5), NBars(3);
If CountIF(BullishEngulfing(Length), NBars) > 0 Then
Buy ("BE") Next Bar at High Stop;
What I'm attempting to do with no success so for is trying to making these signals into Condition1 and Condition2 statements.
Having problems trying to combine several TradeStations Signals into my first Trading System.
Example of TradeStation's Signals:
{*******************************************************************
Description : Bollinger Bands Long Entry
Provided By : Omega Research, Inc. (c) Copyright 1999
********************************************************************}
Inputs: Length(9), StdDevDn(2), BarsBlw(2);
Variables: BBBot(0);
BBBot = BollingerBand(Close, Length, -StdDevDn);
If CountIF(Close < BBBot, BarsBlw) = BarsBlw Then
Buy ("BB") Next Bar at BBBot Stop;
{*******************************************************************
Description : Bullish Engulfing Pattern
Provided By : Omega Research, Inc. (c) Copyright 1999
********************************************************************}
Inputs: Length(5), NBars(3);
If CountIF(BullishEngulfing(Length), NBars) > 0 Then
Buy ("BE") Next Bar at High Stop;
What I'm attempting to do with no success so for is trying to making these signals into Condition1 and Condition2 statements.