이 전략은
구체적으로, 거래 논리는 다음과 같습니다.
50일 EMA와 200일 EMA를 계산합니다.
50일 EMA가 200일 EMA를 넘을 때 상승 추세를 나타냅니다.
50일 EMA가 200일 EMA 아래로 넘어가면 하락 추세를 나타내고, 그래서 하락을 나타냅니다.
트렌드 전환이 발생하면 기존 포지션이 닫히고 새로운 트렌드로 방향을 전환합니다.
이 전략의 장점은 주요 트렌드 방향을 결정하기 위해 EMA
일반적으로 이중 EMA 전략은 트렌드 추종을 위해 주요 트렌드 반전을 적시에 포착함으로써 중장기 포지셔닝에 적합합니다. 그러나 거래자는 여전히 더 많은 지표를 관찰하고 전략 조정에 유연성을 유지해야합니다.
/*backtest start: 2023-08-13 00:00:00 end: 2023-09-12 00:00:00 period: 2h 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/ // © Sonu1997 //@version=4 //@version=5 strategy('moving average strategy', overlay=true) ema50 =ema(close, 50) ema200 =ema(close, 200) long = ema50 > ema200 short = ema50 < ema200 strategy.entry('long', strategy.long, 0, when=long) strategy.entry('short', strategy.short, 0, when=short) strategy.close('long', when=short) strategy.close('short', when=long)