
この戦略は,簡単なK線形判定ルールを設定することによって,テスラ4時間線に対する長ポジション突破取引を実現する.戦略は,シンプルで,論理的に明確で,容易に理解するなどの利点がある.
戦略の核心判断論理は以下の4つのK線形法に基づいています.
上記の4つのルールが同時に満たされているとき,多方向の開場操作を行う.
さらに,戦略は,価格がストップまたはストップ条件を触発したときに平仓操作を行うためのストップ・ロースとストップ・ポジションを設定します.
この戦略の利点は以下の通りです.
リスクは以下の通りです.
リスクは以下の方法で軽減できます.
この戦略の最適化方向は以下の通りです.
この戦略は,単純なK線形判定規則によって複数の突破取引を可能にする.ある程度の改善の余地があるが,単純さと直接性の考慮から,この戦略は,初心者の理解と使用に非常に適した長期ポジション戦略である.継続的な最適化により,戦略の効果をさらに優れたものにすることができる.
/*backtest
start: 2023-12-01 00:00:00
end: 2023-12-31 23:59:59
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © TheQuantScience
//@version=5
strategy("SimpleBarPattern_LongOnly", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, currency = currency.EUR, initial_capital = 1000, commission_type = strategy.commission.percent, commission_value = 0.03)
// Make input options that configure backtest date range
startDate = input.int(title="Start Date",
defval=1, minval=1, maxval=31)
startMonth = input.int(title="Start Month",
defval=1, minval=1, maxval=12)
startYear = input.int(title="Start Year",
defval=2017, minval=1800, maxval=2100)
endDate = input.int(title="End Date",
defval=8, minval=1, maxval=31)
endMonth = input.int(title="End Month",
defval=3, minval=1, maxval=12)
endYear = input.int(title="End Year",
defval=2022, minval=1800, maxval=2100)
// Look if the close time of the current bar
// Falls inside the date range
inDateRange = true
// Setting Conditions
ConditionA = low < open
ConditionB = low < low[1]
ConditionC = close > open
ConditionD = close > open[1] and close > close[1]
FirstCondition = ConditionA and ConditionB
SecondCondition = ConditionC and ConditionD
IsLong = FirstCondition and SecondCondition
TakeProfit_long = input(4.00)
StopLoss_long = input(4.00)
Profit = TakeProfit_long*close/100/syminfo.mintick
Loss = StopLoss_long*close/100/syminfo.mintick
EntryCondition = IsLong and inDateRange
// Trade Entry&Exit Condition
if EntryCondition and strategy.opentrades == 0
strategy.entry(id = 'Open_Long', direction = strategy.long)
strategy.exit(id = "Close_Long", from_entry = 'Open_Long', profit = Profit, loss = Loss)