यह व्यापारिक सलाह नहीं है - कोई गारंटी नहीं है - अपने जोखिम पर उपयोग करें
9 और 20 अवधि के घातीय चलती औसत (ईएमए) को प्लॉट करता है और बीच में एक बादल को चित्रित करता है, जो इंट्राडे ट्रेंड और इसकी ताकत की दृश्य पहचान करता है। लंबे समय के लिए हरा बादल, छोटे के लिए लाल बादल। जितना मोटा बादल उतना मजबूत ट्रेंड होता है। लॉन्ग प्ले एंट्री तब होती है जब 9 ईएमए 20 ईएमए से ऊपर पार हो जाता है जिससे बादल हरा हो जाता है, छोटे के लिए विपरीत।
आक्रामक प्रवेश उस बार के समापन पर होता है जो क्रॉस होने का कारण बनता है। रूढ़िवादी प्रवेश तब होता है जब क्रॉस के बाद दूसरा बार 9 ईएमए से ऊपर बंद हो जाता है और खेल की दिशा में होता है।
बाहर निकलना तब हो सकता है जब कीमत क्लाउड में या क्लाउड के विपरीत पक्ष में बंद हो जाती है या जब औसत व्यक्ति की जोखिम सहिष्णुता के आधार पर व्यापार की विपरीत दिशा में पार करते हैं।
यह व्यापारिक सलाह नहीं है - कोई गारंटी नहीं है - अपने जोखिम पर उपयोग करें
बैकटेस्ट
/*backtest start: 2022-04-17 00:00:00 end: 2022-05-16 23:59:00 period: 30m basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] args: [["v_input_1",10],["v_input_2",18]] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Ron Westbrook (discord: disturbinglymellow#4075) // Date: 5/17/2021 // Description: Plots two exponential moving averages and places a colored cloud between to indicate trend direction. Default values of 9 and 20 periods have worked well for me, but inputs are available if you choose to change them. If you like my work and want to support more of it please consider leaving me a tip here. https://tinyurl.com/tipron //@version=5 indicator(title='EMA TREND CLOUD', overlay=true) fastLen = input(title='Fast EMA Length', defval=9) slowLen = input(title='Slow EMA Length', defval=20) useTextLabels = input.bool(true, title='Use Text-Based Crossover Labels?', group='Crossover Moving Averages') fastEMA = ta.ema(close, fastLen) slowEMA = ta.ema(close, slowLen) fema = plot(fastEMA, title='FastEMA', color=color.new(color.green, 0), linewidth=1, style=plot.style_line) sema = plot(slowEMA, title='SlowEMA', color=color.new(color.red, 0), linewidth=1, style=plot.style_line) fill(fema, sema, color=fastEMA > slowEMA ? color.new(#417505, 50) : color.new(#890101, 50), title='Cloud') // Bull and Bear Alerts Bull = ta.crossover(fastEMA, slowEMA) Bear = ta.crossunder(fastEMA, slowEMA) plotshape(Bull, title='Calls Label', color=color.new(color.green, 25), textcolor=useTextLabels ? color.white : color.new(color.white, 100), style=useTextLabels ? shape.labelup : shape.triangleup, text='Calls', location=location.belowbar) plotshape(Bear, title='Puts Label', color=color.new(color.red, 25), textcolor=useTextLabels ? color.white : color.new(color.white, 100), style=useTextLabels ? shape.labeldown : shape.triangledown, text='Puts', location=location.abovebar) if Bull alert('Calls Alert: 9ema crossed over 20ema', alert.freq_once_per_bar_close) if Bear alert('Puts Alert: 9ema crossed under 20ema', alert.freq_once_per_bar_close) if Bull strategy.entry("Enter Long", strategy.long) else if Bear strategy.entry("Enter Short", strategy.short)
ब्वक्सियाकमैं अंग्रेजी नहीं समझता।