BB Trendtrading Hello everyone, I am looking for a talented programmer for the BB trendtrading system. The programmer should be experienced in dealing with degrees of moving averages in EAs and should provide a good structured code. I will take a look at the code. The EA should trade CFDs and FX. I use the brokers JFD Brokers and Axitrader so it should work with their MT4 platforms. Working means it should be able to trade their CFDs and FX underlyings and it should calculate the positionsize correctly. Lets get to the strategy: We need the simple moving average, it’s slope, the %BB oscillator and the average true range for the stop loss. Enter long when: * Price > SMA (external variable: SMA length, for example 200) * SMA Slope > 30 Degrees (external variable: Minimum degree number, for example 30) * %b closes below 0.2 o external variables for the %b indicator: * BBPeriod, for example 21 * Std Deviation, for example 2 * %b low, for example 0.2 * %b high, for example 0.8 Enter short when: * Price < SMA * SMA Slope > 30 Degrees (short direction) * %b closes above 0.8 Exit long when: * %b closes above 0.8 Exit short when: * %b closes below 0.2 Set stop loss at: * X times ATR(14) of the traded timeframe (external variable: X, for example 3) Trading time: * I want to use it primarily on D1 timeframe. Nevertheless I’d like to test it on lower timeframes too. Therefore it should have a time filter for entering new trades. o External variable for the time filter: * Start time, for example 09:30 * End time, for example 17:00 Moneymanagement: * It should be able to trade fixed lot sizes. * It should be able to trade with %risk approach. o External variable for the time filter: * Lotsize number, for example 1 * %risk number, for example 0.02 (=2%)