B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things...

74
B-Composer BuzTrading.com

Transcript of B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things...

Page 1: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Page 2: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Ah-Um

Page 3: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Find evolved bias by combining Time and a volatility or directionality pattern.

The system works both long and short.

Page 4: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

The B-Composer Ah-Um allows you to create dozens of trading systems without writing a line of code on:

futures, stocks and forex.

Page 5: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Trigger Entry

1

TimeWindow

2

Exit

3

Pattern Filter

4

Day Filter

5

Page 6: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

AAA:EntryType: 1-3 step 1

BBB: MyStartTime: 100-2300 step 100

Duration: 1-3 step 1 (Depends on the timeframe)

CCC: pattern: 1-29 step 1 Portion: 0-200 step 25

exitBars: (ex.) 8-12 step 2

Step 1 ( simultaneously)

(long/short) PtnL: ptnlong: 0-48 step 1pLong: 0-200 step 10

(long/short)DaytoFilterL: 1-5 step 1

MyStopMyProfit

Step 2 (not simultaneously)

Page 7: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

StartPause(1010101), EndPause(1010101), Only if you have to EXCLUDE a few years StartPause(1110101), EndPause(1120101), (example:exclude 2011)

AAA("1 bias, 2 breakout, 3 rev"), EntryType(1), EntryType: 1-3 step 1 1: entry next bar at market; 2: entry next bar at high stop; 3: entry next bar at low limit;

BBB("100-2300->100, duration is number of bars"),MyStartTime(0), duration(2),

MyStartTime: 100-2300 step 100 (or 200),duration: 1-4 step 1

We need to find a time band of up to 1-2 hours to isolate the behavior of the pattern.

CCC("1-29"),pattern(0), portion(0),, Example: pattern: 0-29 step 1portion: 0-200 step 10

Patterns are directional or specular volatility filters.

The portion adds a portion of volatility to the filter.The research must identify cyclical bias. It’s the

trigger pattern.

DDD("1-48"),ptnlong(0), plong(0),DDD2("1-48"),ptnshort(0), pshort(0),

Example: ptnlong:0-48 step 1 plong 0-200 step 10ptnShort: 0-48 step 1 plong 0-200 step 10

The pattern is valid only for the long or short side. The pattern is a directional or volatility filterTo be used as a filter for the first pattern.

DaytoFilterL(-1), DaytoFilterS(-1), DaytoFilterL: 1-5 step 1DaytoFilterS: 1-5 step 1 Another filter

EEE("Exit After X Bars"),exitBars(0), exitBars: (example timeframe 60 min): 8-12 step 1 The exit helps to limit the action of the pattern to a specific moment of the day.

MyStop(0), myprofit(0); / /

Page 8: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

It is a generalization. Buying at the high of the previous bar at 30 or 60 min is not definable as a real breakout, let's say that it is an expectation of a movement consistent with the expectation of small trend.It’s a long side example.

“triggerlong” (tipologia ingresso)

BuzTrading.com

1. buy next bar at market; Bias

2. buy next bar at high stop; Breakout (buy at high of the previous bar)

3. Buy next bar at low limit; Reversal (buy at low of the previous bar)

Page 9: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

An example to Platinum Future.//@pl data 1 60 min data2 1440 min//trigger: opend0 > ( loww1 + percDecVariation * (highw1 - loww1) )//exit after 15 bars

input: mycon(1), mystop(1500), myprofit(5000),mybe(1000);var:MyStartTime(1800), Duration(200), ptn(14) , p(75), Uscita(15) ;

if t > MyStartTime and t < MyStartTime+Duration then beginIf buztrading(+ptn, p) then buy mycon contracts next bar at market;If buztrading(-ptn, p) then sellshort mycon contracts next bar at market;end;If myprofit>0 then setprofittarget(myprofit);if mybe>0 then setbreakeven(mybe);

...

Example

BuzTrading.com

Explanation: in the first 2 hours of the session, we buy "market", if the following condition occurs:opend0 > ( loww1 + percDecVariation * (highw1 - loww1) ). This is the pattern number 14 with 75% of portion. (It’s just an example).

Exit intraday.

We isolated a specific bias intraday (hour+pattern) on platinum future.

Page 10: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Pattern

BuzTrading.com

High

Close

OpenLimit

Porzione -> 50%

An example of a pattern and the use of "portion" (however portion can remain even 0).In this example, the pattern says that "high" must be greater than the previous "high" of a portion of the range of the previous bar.

If "Porzione" is 50, then high must be 50% greater than the range of the previous bar.

rang

e

Page 11: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

CL bias trading system

Page 12: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

HYPOTHETICAL PERFORMANCE RESULTS HAVE MANY INHERENT LIMITATIONS, SOME OF WHICH ARE DESCRIBED BELOW. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFITS OR LOSSES SIMILAR TO THOSE SHOWN. IN FACT, THERE ARE FREQUENTLY SHARP DIFFERENCES BETWEEN HYPOTHETICAL PERFORMANCE RESULTS AND THE ACTUAL RESULTS SUBSEQUENTLY ACHIEVED BY ANY PARTICULAR TRADING PROGRAM. ONE OF THE LIMITATIONS OF HYPOTHETICAL PERFORMANCE RESULTS IS THAT THEY ARE GENERALLY PREPARED WITH THE BENEFIT OF HINDSIGHT. IN ADDITION, HYPOTHETICAL TRADING DOES NOT INVOLVE FINANCIAL RISK, AND NO HYPOTHETICAL TRADING RECORD CAN COMPLETELY ACCOUNT FOR THE IMPACT OF FINANCIAL RISK IN ACTUAL TRADING. FOR EXAMPLE, THE ABILITY TO WITHSTAND LOSSES OR TO ADHERE TO A PARTICULAR TRADING PROGRAM IN SPITE OF TRADING LOSSES ARE MATERIAL POINTS WHICH CAN ALSO ADVERSELY AFFECT ACTUAL TRADING RESULTS. THERE ARE NUMEROUS OTHER FACTORS RELATED TO THE MARKETS IN GENERAL OR TO THE IMPLEMENTATION OF ANY SPECIFIC TRADING PROGRAM WHICH CANNOT BE FULLY ACCOUNTED FOR IN THE PREPARATION OF HYPOTHETICAL PERFORMANCE RESULTS AND ALL OF WHICH CAN ADVERSELY AFFECT ACTUAL TRADING RESULTS.

Page 13: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Info

BuzTrading.com

[email protected]

Page 14: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Page 15: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Arrow

Page 16: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Find Intermarket type trading system. It is based on bias, breakout or reversal concepts thanks to 29 original triggers.

The system works both long and short.

Page 17: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

The B-Composer Arrow allows you to create dozens of trading systems without writing a line of code on:

futures, stocks and forex.

Page 18: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Type Entry

1 Trigger

2

Pattern Filter

3

Exit

4

Page 19: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

AAA: Type Entry: 1-3 step 1

BBB: Trigger : 1-29 step 1Length: 5-30 step 5

EEE:exitBars: 1-5 step 2

Step 1 (also simultaneously)

CCC:Pattern: 0-29 step 1

Porzione 0-200 step 25

EEE: exitBarsLong: 1-5 step 2exitBarsShort: 1-5 step 2

MyStopMyProfit

Step 2 (not simultaneously)

Combination: 609

Page 20: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

InizioPause(1010101), FinePause(1010101), Only if you have to EXCLUDE a few years InizioPause(1110101), FinePause(1120101), (example:exclude 2011)

AAA("1 at market, 2 breakout, 3 reversal"), TypeEntry(1), TypeEntry: 1-3 step 1

Entry 1: “at market”;Entry 2: “At high stop/low stop”;Entry 3: “At low limit/high limit”);

BBB("1-29"), trigger(1), Length(5), Trigger: 1-29 step 1Length: 5-30 step 5

All triggers must be checked (1-29). The length adapts to the timeframe.

CCC("1-28"),pattern(0), portion(0), Pattern: 0-29 portion: 0-200 step 25

Patterns are directional or specular volatility filters.

The portion adds a portion of volatility to the filter.

DDD("1-48"),ptnlong(0), plong(0),DDD2("1-48"),ptnshort(0), pshort(0),

Example: ptnlong: 0-48Ptnshort: 0-48

The pattern is valid only for the long or short side. The pattern is a directional or volatility filter

EEE(""), exitBars(0), exitBarsLong(5),exitBarsShort(5),

exitBars: 1-5 step 2exitBarsLong: 1-5 step 2

On indices and bonds it is recommended to use different Exit long and short.

MyStop(0), MyProfit(0); MyStop: 1000-2000 step 250 If (0) then Stop e Target are disabled

Page 21: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Pattern

BuzTrading.com

High

Close

OpenLimit

Porzione -> 50%

An example of a pattern and the use of "portion" (however portion can remain even 0).In this example, the pattern says that "high" must be greater than the previous "high" of a portion of the range of the previous bar.

If "Porzione" is 50, then high must be 50% greater than the range of the previous bar.

rang

e

Page 22: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Arrow composer works on all timeframes. However, there are things to consider:data1 -> the timeframe on which orders are made and therefore there must be the tool used to exploit the intermarket relationship;data2 -> the timeframe where there are triggers, so it is the reference for the isolation of intermarket behaviors.

I recommend a data2 that is always larger than date1.My favorite timeframes:Date1 30 minutes, data2 60 minutes;Date1 30 minutes, date2 240 minutes;Date1 60 minutes, data2 60 minutes;Date1 60 minutes, data2 1440 minutes;Date1 1440 minutes, data2 1440 minutes;

Recommended timeframe

BuzTrading.com

Page 23: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Recommended timeframe: example

BuzTrading.com

LC 1440 MINFC 1440 MIN

NG 30 MINCL 60 MIN

SI 60 MINGC 1440 MIN

Page 24: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

It is easy to fall into logical or statistical errors when looking for intermarket relationships. Here are some tips for the future.PL-GC, SI-GC, PA-GC, HG-GC,GC-ES, EC-GC, RB-CL, HO-CL, NG-CL, RB-HO,SF-EC, JY-EC, BP-EC, AD-EC, ES-ECZC-ZS, ZW-ZS, ZM-ZS, ZL-ZS, KE-ZW, GF-LE, HE-LE,TY-US, ES-TY, ES-US

Intermarket correctly

BuzTrading.com

Page 25: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Silver Intermarket Trading System

Page 26: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Swiss Franc Intermarket Trading System

Page 27: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

HYPOTHETICAL PERFORMANCE RESULTS HAVE MANY INHERENT LIMITATIONS, SOME OF WHICH ARE DESCRIBED BELOW. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFITS OR LOSSES SIMILAR TO THOSE SHOWN. IN FACT, THERE ARE FREQUENTLY SHARP DIFFERENCES BETWEEN HYPOTHETICAL PERFORMANCE RESULTS AND THE ACTUAL RESULTS SUBSEQUENTLY ACHIEVED BY ANY PARTICULAR TRADING PROGRAM. ONE OF THE LIMITATIONS OF HYPOTHETICAL PERFORMANCE RESULTS IS THAT THEY ARE GENERALLY PREPARED WITH THE BENEFIT OF HINDSIGHT. IN ADDITION, HYPOTHETICAL TRADING DOES NOT INVOLVE FINANCIAL RISK, AND NO HYPOTHETICAL TRADING RECORD CAN COMPLETELY ACCOUNT FOR THE IMPACT OF FINANCIAL RISK IN ACTUAL TRADING. FOR EXAMPLE, THE ABILITY TO WITHSTAND LOSSES OR TO ADHERE TO A PARTICULAR TRADING PROGRAM IN SPITE OF TRADING LOSSES ARE MATERIAL POINTS WHICH CAN ALSO ADVERSELY AFFECT ACTUAL TRADING RESULTS. THERE ARE NUMEROUS OTHER FACTORS RELATED TO THE MARKETS IN GENERAL OR TO THE IMPLEMENTATION OF ANY SPECIFIC TRADING PROGRAM WHICH CANNOT BE FULLY ACCOUNTED FOR IN THE PREPARATION OF HYPOTHETICAL PERFORMANCE RESULTS AND ALL OF WHICH CAN ADVERSELY AFFECT ACTUAL TRADING RESULTS.

Page 28: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Info

BuzTrading.com

[email protected]

Page 29: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Page 30: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Erbaluce

Page 31: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Finding bias, breakout, reversal systems using the BuzVola that isolates specific volatility conditions.

The system works both long and short.

Page 32: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

The B-Composer Erbaluce allows you to create dozens of trading systems without writing a line of code on:

futures, stocks and forex.

Page 33: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Futures,Forex,stocks

Instrument

BuzTrading.com

30 minutes;60 minutes;240 minutes;480 minutes;1440 minutes...

Timeframe

Breakout / trend followingReversal / counter trend / mean reverting

Target

Page 34: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Type Entry

1 Volatility filter

2

Pattern Filter

3

Exit

4

Page 35: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

AAA: Type: 1-3 step 1Mul: 0-3 step 1

BBB: Trigger : 1-2 step 1

Lunghezza: 5-20 step 5Soglia: 20-80 step 10

EEE:ExitLength: 0-3 step 1Stop Loss: 1000-3000

Step 1 (also simultaneously)

CCC:Pattern: 0-25 step 1

Porzione 0-200 step 25

EEE: ExitGain: 0-3 step 1ExitLoss: 0-3 step 1

EEE:MyProfit

Step 2 (not simultaneously)

Combination: 3360

Combination: 609

Page 36: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

InizioPause(1010101), FinePause(1010101), Only if you have to EXCLUDE a few years InizioPause(1110101), FinePause(1120101), (example:exclude 2011)

AAA: type(2), LengthEntry(5), mul(2), Type: 4-6 step 1 If “type” number 1 is not used, it is not necessary to optimize "Mul"

BBB: trigger(1), Length(5), threshold(50),Trigger: 1-2 step 1

Length: 5-20 step 5Threshold: 50-90 step 10

You can optimize the first time roughly (step5-10) and then refine the result later (step 2-5)

CCC("0-28"),pattern(0), porzione(0), Pattern: 0-25 Porzione: 0-200 step 10

Patterns are directional or specular volatility filters.

The portion adds a portion of volatility to the filter.

DDD1("0-40"),ptnlong(0), plong(0),DDD2("0-40"),ptnshort(0), pshort(0),

Example: ptnlong: 0-40Ptnshort: 0-40

The pattern is valid only for the long or short side. The pattern is a directional or volatility filter

EEE("0-X"),ExitLength(5), ExitGain(0), ExitLoss(0), ExitLength: 1-5Each output left at 0 is disabled.ExitGain after X bar if profit >0.ExitLoss after X bar if profit <0.

profitvola(0), stopvola(0), profitvola: 0-5 step 1Stopvola: 0-5 step 1 Volatility is calculated in 5 days with the ATR

MyStop(0), MyProfit(0); MyStop: 1000-2000 step 250 If (0) then Stop e Target are disabled

Page 37: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

The BuzVola is a secret indicator designed by BuzTrading.It is based on the X-period ATR and has a range of values from 0 to 100.Normalize the volatility to identify areas of high or low volatility in an extremely effective way

BuzVola

BuzTrading.com

Page 38: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

“Type” (tipologia ingresso)

BuzTrading.com

1. buy next bar at open+range*mul stop; Breakout (opening range breakout)

2. buy next bar at high stop; Breakout (buy at high of the previous bar)

3. Buy next bar at highest(high,LengthEntry) stop; Breakout (buy at highest high of the previous bar)

4. buy next bar at low limit Reversal (buy at low of the previous bar)

5. Buy next bar at lowest(low,LengthEntry) limit; Reversal (buy at lowest low of the previous bar)

6. buy next bar at low limit;sell next bar at high limit;

Reversal Only Long (buy at low limit of the previous bar)Exit on high of the previous bar

7. Buy next bar at lowest(low,LengthEntry) limit;Sell next bar at lowest(low,5) stop;

Reversal Only Long (buy at lowest low limit of the previous bar)Exit on highest high of the previous bar

8. buy ncon contracts next bar at low limit;sell next bar at highw(0) limit;

Reversal Only Long (buy at low limit of the week)Exit on high of the week

Page 39: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Pattern

BuzTrading.com

High

Close

OpenLimit

Porzione -> 50%

An example of a pattern and the use of "portion" (however portion can remain even 0).In this example, the pattern says that "high" must be greater than the previous "high" of a portion of the range of the previous bar.

If "Porzione" is 50, then high must be 50% greater than the range of the previous bar.

rang

e

Page 40: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Erbaluce Gold Breakout Trading System

Page 41: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

HYPOTHETICAL PERFORMANCE RESULTS HAVE MANY INHERENT LIMITATIONS, SOME OF WHICH ARE DESCRIBED BELOW. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFITS OR LOSSES SIMILAR TO THOSE SHOWN. IN FACT, THERE ARE FREQUENTLY SHARP DIFFERENCES BETWEEN HYPOTHETICAL PERFORMANCE RESULTS AND THE ACTUAL RESULTS SUBSEQUENTLY ACHIEVED BY ANY PARTICULAR TRADING PROGRAM. ONE OF THE LIMITATIONS OF HYPOTHETICAL PERFORMANCE RESULTS IS THAT THEY ARE GENERALLY PREPARED WITH THE BENEFIT OF HINDSIGHT. IN ADDITION, HYPOTHETICAL TRADING DOES NOT INVOLVE FINANCIAL RISK, AND NO HYPOTHETICAL TRADING RECORD CAN COMPLETELY ACCOUNT FOR THE IMPACT OF FINANCIAL RISK IN ACTUAL TRADING. FOR EXAMPLE, THE ABILITY TO WITHSTAND LOSSES OR TO ADHERE TO A PARTICULAR TRADING PROGRAM IN SPITE OF TRADING LOSSES ARE MATERIAL POINTS WHICH CAN ALSO ADVERSELY AFFECT ACTUAL TRADING RESULTS. THERE ARE NUMEROUS OTHER FACTORS RELATED TO THE MARKETS IN GENERAL OR TO THE IMPLEMENTATION OF ANY SPECIFIC TRADING PROGRAM WHICH CANNOT BE FULLY ACCOUNTED FOR IN THE PREPARATION OF HYPOTHETICAL PERFORMANCE RESULTS AND ALL OF WHICH CAN ADVERSELY AFFECT ACTUAL TRADING RESULTS.

Page 42: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Info

BuzTrading.com

[email protected]

Page 43: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

Page 44: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Hakuna Matata

Page 45: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Finding breakout or reversal trading system through unconventional overbought and oversold channels.

The system works both long and short.

Page 46: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

The B-Composer Hakuna Matata allows you to create dozens of trading systems without writing a line of code

on: futures, stocks and forex.

Page 47: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Type Entry

1 Trigger

2

Pattern Filter

3

Exit

4

Page 48: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

AAA: Type: 1-2 step 1

BBB: Trigger : 1-12 step 1Length: 5-30 step 5

EEE:exitBars: 1-5 step 2

Step 1 (also simultaneously)

CCC:Pattern: 0-25 step 1

Porzione 0-200 step 25

EEE: exitBarsLong: 1-5 step 2exitBarsShort: 1-5 step 2

MyStopMyProfit

Step 2 (not simultaneously)

Combination: 609

Page 49: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

InizioPause(1010101), FinePause(1010101), Only if you have to EXCLUDE a few years InizioPause(1110101), FinePause(1120101), (example:exclude 2011)

AAA("1-2 Breakout, 3-4 Reversal, 5-6 Rev Only Long"), TypeEntry(1), TypeEntry: 1-2 step 1 1 Entry by “At market” order.

1 Entry by “stop” order

BBB("1-12"), trigger(1), Length(5), Trigger: 1-12 step 1Length: 5-30 step 5

All triggers must be checked (1-12). The length adapts to the timeframe.

CCC("0-28"),pattern(0), porzione(0), Pattern: 0-25 Porzione: 0-200 step 10

Patterns are directional or specular volatility filters.

The portion adds a portion of volatility to the filter.

DDD1("0-40"),ptnlong(0), plong(0),DDD2("0-40"),ptnshort(0), pshort(0),

Example: ptnlong: 0-40Ptnshort: 0-40

The pattern is valid only for the long or short side. The pattern is a directional or volatility filter

DaytoFilterL(-1), DaytoFilterS(-1), DaytoFilterL: 0-5 step 10 = Sunday1 = Monday

etc

EEE(""), exitBars(0), exitBarsLong(5),exitBarsShort(5),

exitBars: 1-5 step 2exitBarsLong: 1-5 step 2

On indices and bonds it is recommended to use different Exit long and short.

MyStop(0), MyProfit(0); MyStop: 1000-2000 step 250 If (0) then Stop e Target are disabled

Page 50: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

“TypeEntry” (tipologia ingresso)

BuzTrading.com

1. buy next bar at market; Breakout

2. buy next bar at high stop; Breakout (buy at high of the previous bar)

3. buy ort next bar at market; Reversal

4. buy next bar at low stop; Reversal (buy at low of the previous bar)

5. buy ort next bar at market; Reversal only long

6. buy next bar at low stop; Reversal Only Long (buy at low of the previous bar))

Page 51: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Pattern

BuzTrading.com

High

Close

OpenLimit

Porzione -> 50%

An example of a pattern and the use of "portion" (however portion can remain even 0).In this example, the pattern says that "high" must be greater than the previous "high" of a portion of the range of the previous bar.

If "Porzione" is 50, then high must be 50% greater than the range of the previous bar.

rang

e

Page 52: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

The main trigger is based on identifying overbought and oversold levels. I have created a new way to interpret these levels. Now you can do tests on a reasoned bundle of similar but different channels that each tell a different story.

Channel

BuzTrading.com

Page 53: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Channel

BuzTrading.com

Page 54: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Channel

BuzTrading.com

Page 55: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Channel

BuzTrading.com

Page 56: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Hakuna Matata ES Reversal Trading system

Page 57: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

HYPOTHETICAL PERFORMANCE RESULTS HAVE MANY INHERENT LIMITATIONS, SOME OF WHICH ARE DESCRIBED BELOW. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFITS OR LOSSES SIMILAR TO THOSE SHOWN. IN FACT, THERE ARE FREQUENTLY SHARP DIFFERENCES BETWEEN HYPOTHETICAL PERFORMANCE RESULTS AND THE ACTUAL RESULTS SUBSEQUENTLY ACHIEVED BY ANY PARTICULAR TRADING PROGRAM. ONE OF THE LIMITATIONS OF HYPOTHETICAL PERFORMANCE RESULTS IS THAT THEY ARE GENERALLY PREPARED WITH THE BENEFIT OF HINDSIGHT. IN ADDITION, HYPOTHETICAL TRADING DOES NOT INVOLVE FINANCIAL RISK, AND NO HYPOTHETICAL TRADING RECORD CAN COMPLETELY ACCOUNT FOR THE IMPACT OF FINANCIAL RISK IN ACTUAL TRADING. FOR EXAMPLE, THE ABILITY TO WITHSTAND LOSSES OR TO ADHERE TO A PARTICULAR TRADING PROGRAM IN SPITE OF TRADING LOSSES ARE MATERIAL POINTS WHICH CAN ALSO ADVERSELY AFFECT ACTUAL TRADING RESULTS. THERE ARE NUMEROUS OTHER FACTORS RELATED TO THE MARKETS IN GENERAL OR TO THE IMPLEMENTATION OF ANY SPECIFIC TRADING PROGRAM WHICH CANNOT BE FULLY ACCOUNTED FOR IN THE PREPARATION OF HYPOTHETICAL PERFORMANCE RESULTS AND ALL OF WHICH CAN ADVERSELY AFFECT ACTUAL TRADING RESULTS.

Page 58: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Info

BuzTrading.com

[email protected]

Page 59: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Page 60: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Tankian

Page 61: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Find seasonal intraday bias by combining Entry, Time and Day.

The system works both long and short.

Page 62: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

The B-Composer Tankian allows you to create dozens of trading systems without writing a line of code on:

futures, stocks and forex.

Page 63: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

B-Composer

BuzTrading.com

Trigger Entry

1

Hour

2

Day

3

Trigger Exit

4

Exit

5

Pattern Filter

6

Page 64: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

AAA: TriggerLong: 1-3 step 1

BBB: LongHour: 100-2300 step 200

CCC:DayLong: 1-5 step 1

DDD1: Trigger exit: 1-3 step 1

DDD2: ExitLong: (ex.) 4-8 step 2

Step 1 ( simultaneously)

SpecularPTN:Pattern: 0-28 step 1

Porzione 0-200 step 25

PtnL: PtnL: 0-48 step 1

Porzione 0-200 step 10

MyStopMyProfit

Step 2 (not simultaneously)

Page 65: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

StartPause(1010101), EndPause(1010101), Only if you have to EXCLUDE a few years StartPause(1110101), EndPause(1120101), (example:exclude 2011)

AAA("1 market, 2 stop, 2 limit"),triggerlong(1),triggershort(1), TriggerLong: 1-3 step 1 1: entry next bar at market; 2: entry next bar at

high stop; 3: entry next bar at low limit;

BBB(""), LongHour(100), ShortHour(500),CCC(""), DayLong(-1), DayShort(-1),

LongHour: 100-2300 step 100 (or 200),DayLong: 1-5 step 1

You can not optimize the day if there are previous studies.

DDD1("1-market, 2 stop, 2 limit"),triggerlongExit(1), triggershortExit(1),

DDD2("Numero di barre"),ExitLong(5), ExitShort(5),

triggerlongExit: 1-3 step 1ExitLong: Depends on the timeframe used.

1: entry next bar at market; 2: entry next bar at high stop; 3: entry next bar at low limit;

ExitLong: exit after “ExitLong” Bars.

SpecularPTN("1-29"), pattern(0), portion(0), Example: pattern: 0-29 step 1portion: 0-200 step 10

Patterns are directional or specular volatility filters.

The portion adds a portion of volatility to the filter.

PtnL("1-48"),ptnlong(0), plong(0),PtnS("1-48"),ptnShort(0), pShort(0),

Example: ptnlong:0-48 step 1 plong 0-200 step 10ptnShort: 0-48 step 1 plong 0-200 step 10

The pattern is valid only for the long or short side. The pattern is a directional or volatility filter

MyStop(0), myprofit(0); / /

Page 66: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

It is a generalization. Buying at the high of the previous bar at 30 or 60 min is not definable as a real breakout, let's say that it is an expectation of a movement consistent with the expectation of small trend.It’s a long side example.

“triggerlong” (tipologia ingresso)

BuzTrading.com

1. buy next bar at market; Bias

2. buy next bar at high stop; Breakout (buy at high of the previous bar)

3. Buy next bar at low limit; Reversal (buy at low of the previous bar)

Page 67: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

You can start from previously done studies, such as intradayseasonal.com. An example to Gold Future

Bias Study

BuzTrading.com

Page 68: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

You can start from previously done studies, such as intradayseasonal.com. An example to Crude Oil Future

Bias Study

BuzTrading.com

Page 69: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

You can start from previously done studies, such as intradayseasonal.com. An example to Soybean Future

Bias Study

BuzTrading.com

Page 70: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Pattern

BuzTrading.com

High

Close

OpenLimit

Porzione -> 50%

An example of a pattern and the use of "portion" (however portion can remain even 0).In this example, the pattern says that "high" must be greater than the previous "high" of a portion of the range of the previous bar.

If "Porzione" is 50, then high must be 50% greater than the range of the previous bar.

rang

e

Page 71: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Soybean bias Trading System

Page 72: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

Japanese Yen bias Trading System

Page 73: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

BuzTrading.com

HYPOTHETICAL PERFORMANCE RESULTS HAVE MANY INHERENT LIMITATIONS, SOME OF WHICH ARE DESCRIBED BELOW. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFITS OR LOSSES SIMILAR TO THOSE SHOWN. IN FACT, THERE ARE FREQUENTLY SHARP DIFFERENCES BETWEEN HYPOTHETICAL PERFORMANCE RESULTS AND THE ACTUAL RESULTS SUBSEQUENTLY ACHIEVED BY ANY PARTICULAR TRADING PROGRAM. ONE OF THE LIMITATIONS OF HYPOTHETICAL PERFORMANCE RESULTS IS THAT THEY ARE GENERALLY PREPARED WITH THE BENEFIT OF HINDSIGHT. IN ADDITION, HYPOTHETICAL TRADING DOES NOT INVOLVE FINANCIAL RISK, AND NO HYPOTHETICAL TRADING RECORD CAN COMPLETELY ACCOUNT FOR THE IMPACT OF FINANCIAL RISK IN ACTUAL TRADING. FOR EXAMPLE, THE ABILITY TO WITHSTAND LOSSES OR TO ADHERE TO A PARTICULAR TRADING PROGRAM IN SPITE OF TRADING LOSSES ARE MATERIAL POINTS WHICH CAN ALSO ADVERSELY AFFECT ACTUAL TRADING RESULTS. THERE ARE NUMEROUS OTHER FACTORS RELATED TO THE MARKETS IN GENERAL OR TO THE IMPLEMENTATION OF ANY SPECIFIC TRADING PROGRAM WHICH CANNOT BE FULLY ACCOUNTED FOR IN THE PREPARATION OF HYPOTHETICAL PERFORMANCE RESULTS AND ALL OF WHICH CAN ADVERSELY AFFECT ACTUAL TRADING RESULTS.

Page 74: B-Composer - TradeStation€¦ · Arrow composer works on all timeframes. However, there are things to consider: data1 -> the timeframe on which orders are made and therefore there

Info

BuzTrading.com

[email protected]