CM 스링 샷 시스템

저자:차오장, 날짜: 2022-05-07 16:35:49
태그:EMA

스링글 샷 시스템 + 더 나은 시스템

저는 트렌드 추적 시스템에 대한 이메일을 받았습니다. 1000달러에 판매되고 있지만 그 날만 500달러에 구입할 수 있었습니다.

저는 이 놀라운 시스템을 보여주는 비디오를 보고 있습니다. 코드를 알아내는데 1분 정도 걸렸을지도 모릅니다.

저는 그것을 코딩합니다. 그리고 이...이 나쁜 시스템은 아닙니다. 그것은 트렌딩 이동에 그들을 얻을 수있는 엔트리 신호가 필요할 수 있는 사람들을 위해 좋습니다. 그리고 정의된 중지 제공하면서 트렌딩 이동에 그들을 유지.

그래서 저는 커뮤니티에 몇 개의 EMA와 몇 가지 규칙으로 구성된 시스템에 대한 아주 공정한 가격인 $500만 절약하고 무료로 제공하겠다고 생각했습니다.

2차 시스템을 보여주는 주요 차트를 아래 링크를 참조하십시오!!!

백테스트

img


/*backtest
start: 2021-05-06 00:00:00
end: 2022-05-05 23:59:00
period: 15m
basePeriod: 5m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//Created by ChrisMoody on 10-05-2014
//Known as SlingShot Method that keeps Traders on Trending Side of Market.
study("CM_SlingShotSystem", overlay=true)
sae = input(true, title="Show Aggressive Entry?, Or Use as Alert To Potential Conservative Entry?")
sce = input(true, title="Show Conservative Entry?")
st = input(true, title="Show Trend Arrows at Top and Bottom of Screen?")
def = input(false, title="Only Choose 1 - Either Conservative Entry Arrows or 'B'-'S' Letters")
pa = input(true, title="Show Conservative Entry Arrows?")
sl = input(true, title="Show 'B'-'S' Letters?")

//EMA Definitions
emaSlow = ta.ema(close, 62)
emaFast = ta.ema(close, 38)
//Aggressive Entry or Alert To Potential Trade
pullbackUpT() => emaFast > emaSlow and close < emaFast
pullbackDnT() => emaFast < emaSlow and close > emaFast
//Conservative Entry Code For Highlight Bars
entryUpT() => emaFast > emaSlow and close[1] < emaFast and close > emaFast
entryDnT() => emaFast < emaSlow and close[1] > emaFast and close < emaFast
//Conservative Entry True/False Condition
entryUpTrend = emaFast > emaSlow and close[1] < emaFast and close > emaFast ? 1 : 0
entryDnTrend = emaFast < emaSlow and close[1] > emaFast and close < emaFast ? 1 : 0
//Define Up and Down Trend for Trend Arrows at Top and Bottom of Screen
upTrend = emaFast >= emaSlow
downTrend = emaFast < emaSlow
//Definition for Conseervative Entry Up and Down PlotArrows
codiff = entryUpTrend == 1 ? entryUpTrend : 0
codiff2 = entryDnTrend == 1 ? entryDnTrend : 0
//Color definition for Moving Averages
col = emaFast > emaSlow ? color.lime : emaFast < emaSlow ? color.red : color.yellow
//Moving Average Plots and Fill
p1 = plot(emaSlow, title="Slow MA", style=plot.style_linebr, linewidth=4, color=col)
p2 = plot(emaFast, title="Slow MA", style=plot.style_linebr, linewidth=2, color=col)
//fill(p1, p2, color=silver, transp=50)


if sl and codiff
    strategy.entry("SELL", strategy.short)
else if sl and codiff2
    strategy.entry("BUY", strategy.long)
    
    
    

관련

더 많은