यह रणनीति बाजार की मुख्य प्रवृत्ति दिशा निर्धारित करने के लिए द्विदिशात्मक ईएमए संकेतकों का उपयोग करती है, और आरएसआई संकेतक को प्रवेश चयन के समय के रूप में जोड़ती है, जो प्रवृत्ति के बाद एल्गोरिथ्म ट्रेडिंग रणनीति से संबंधित है।
उपरोक्त रणनीति मुख्य रूप से मुख्य प्रवृत्ति दिशा निर्धारित करने के लिए द्विदिशात्मक ईएमए संकेतक को लागू करती है, और आरएसआई संकेतक को प्रवेश संकेत चयन के रूप में उपयोग करती है, जो एल्गोरिथ्म ट्रेडिंग रणनीति के बाद एक विशिष्ट प्रवृत्ति से संबंधित है।
इस रणनीति का सबसे बड़ा लाभ यह है कि यह बाजार की मुख्य प्रवृत्ति दिशा को स्पष्ट रूप से निर्धारित कर सकती है, और आरएसआई संकेतक के आधार पर एक बेहतर प्रवेश समय का चयन कर सकती है। विशिष्ट लाभ निम्नलिखित हैंः
इस रणनीति में कुछ जोखिम भी हैं, मुख्य रूप से निम्नलिखित पहलुओं मेंः
उपरोक्त जोखिमों से निपटने के लिए निम्नलिखित क्षेत्रों में अनुकूलन किया जा सकता हैः
इस रणनीति के लाभों और जोखिमों से हम निम्नलिखित अनुकूलन योग्य दिशाएं प्राप्त कर सकते हैंः
अधिक संकेतक, पूर्वानुमान मॉडल, पैरामीटर अनुकूलन, जोखिम नियंत्रण मॉड्यूल और अन्य साधनों को लागू करके, इस रणनीति को और अधिक जटिल और अस्थिर बाजार स्थितियों के अनुकूल करने के लिए और बेहतर बनाया जा सकता है।
इस लेख में द्विदिशात्मक ईएमए क्रॉस मात्रात्मक ट्रेडिंग रणनीति की मुख्य सामग्री का विस्तार से परिचय दिया गया। सबसे पहले, इसमें रणनीति के मुख्य विचारों और संचालन सिद्धांतों की रूपरेखा तैयार की गई। फिर रणनीति के लाभों का पूरी तरह से विश्लेषण किया गया। साथ ही, इसमें रणनीति में मुख्य संभावित जोखिमों का भी विश्लेषण किया गया। इस आधार पर, कई प्रमुख अनुकूलन योग्य दिशाओं का प्रस्ताव किया गया। संक्षेप में, इस रणनीति का बाजार की मुख्य प्रवृत्ति निर्धारित करने का लाभ है, और अनुकूलन के लिए कुछ जगह भी है, जो एक विशिष्ट मात्रात्मक ट्रेडिंग रणनीति है। निरंतर सुधार और अनुकूलन के माध्यम से, यह रणनीति निवेशकों के लिए एक महत्वपूर्ण विकल्प बन सकती है
/*backtest start: 2023-01-23 00:00:00 end: 2024-01-23 00:00:00 period: 4h 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/ // © Investoz // Indikatorn är byggd som ett utbildningsyfte och är därför ingen rekommendation för köp/sälj av aktier. Tanken är att skapa en visuell form i en graf // som visar om det finns någon trend såväl positiv som negativ. En dialogruta med en varning talar om vilken trend som råder. I koden finns en möjlighet // att ta position eller gå ur position om man vill skapa en startegi kring denna trendindikator. Rekommenderar dock starkt att inte enbart förlita sig på denna // indikator som beslut för köp/sälj då resultaten blir negativa om man köper på psoitiv trend och säljer på negativ trend. Det måste kombineras med andra idéer // och därför fungerar denna skript mer som ett komplement till sin egen strategi. // Det är fritt fram för vem som helst att använda sig av denna indikator. //@version=4 //Skapar en strategiskript med 5 % av eget kapital som ett exempel. Detta går att ändra i skriptets inställningar, välj egenskaper och sedan ändra orderstorlek //till ett annat värde av % på eget kapital. strategy("© Investoz trendvarningar", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=5) //Lägger till inmatningar till skriptindikatorn. Användaren kan se och redigera inmatningar i objektdialogen efter eget val. ema1 = input(21, minval=1, maxval=500, title="Lila linje") valema1=input(true, title="Visa lila linje") ema2 = input(34, minval=1, maxval=500, title="Blå linje") valema2=input(true, title="Visa blå linje") ema3 = input(55, minval=1, maxval=500, title="Grön linje") valema3=input(true, title="Visa grön linje") ema4 = input(89, minval=1, maxval=500, title="Gul linje") valema4=input(true, title="Visa gul linje") ema5 = input(141, minval=1, maxval=500, title="Orange linje") valema5=input(true, title="Visa orange linje") ema6 = input(230, minval=1, maxval=500, title="Röd linje") valema6=input(true, title="Visa röd linje") ema7 = input(371, minval=1, maxval=500, title="Röd linje") valema7=input(true, title="Visa röd linje") //Inmatningar för antal staplar startbar = input(1, minval=1, maxval=1, title="Första stapeln") Endbar = bar_index //Källa input, stängning. Användaren kan själv byta till vilken källa som önskas. src = input(close, title="Source") //Antal staplar sedan den längsta ema började och framåt. tid=Endbar + startbar - 371 //EMA loop aema1 = ema(src, ema1) bema2 = ema(src, ema2) cema3 = ema(src, ema3) dema4 = ema(src, ema4) eema5 = ema(src, ema5) fema6 = ema(src, ema6) gema7 = ema(src, ema7) //Skriver ut linjer i diagrammet om förhållandet är sant, annars falskt. h=plot(valema1 ? aema1 : na, title="Lila linje", style=plot.style_line, linewidth=1, color=color.purple) i=plot(valema2 ? bema2 : na, title="Blå linje", style=plot.style_line, linewidth=1, color=color.blue) j=plot(valema3 ? cema3 : na, title="Grön linje", style=plot.style_line, linewidth=1, color=color.green) k=plot(valema4 ? dema4 : na, title="Gul linje", style=plot.style_line, linewidth=1, color=color.yellow) l=plot(valema5 ? eema5 : na, title="Orange linje", style=plot.style_line, linewidth=1, color=color.orange) m=plot(valema6 ? fema6 : na, title="Röd linje", style=plot.style_line, linewidth=1, color=color.red) n=plot(valema7 ? gema7 : na, title="Brun linje", style=plot.style_line, linewidth=1, color=color.maroon) //Fyller bakgrunden mellan två linjer med en viss färg. fill(h, i, color = color.purple,transp=34) fill(i, j, color = color.blue,transp=34) fill(j, k, color = color.green,transp=34) fill(k, l, color = color.yellow,transp=34) fill(l, m, color = color.orange,transp=34) fill(m, n, color = color.red,transp=34) //Skapa en algoritm för positiv trend PositivTrend = crossover(aema1,gema7)?1:0 TrendPositiv = ema(close,1) > aema1 and aema1 > bema2?1:0 //Skapa en algoritm för negativ trend NegativTrend = crossunder(aema1,gema7)?1:0 TrendNegativ = ema(close,1) < aema1 and aema1 < bema2?1:0 //Skapar en textruta med varningstext för positiv trend varningtextpositiv = "Varning för positiv trend."+"\n" + "Leta efter att ta position!" // if PositivTrend // varningpositiv=label.new( // bar_index, // low, // xloc=xloc.bar_index, // yloc=yloc.price, // color=color.black, // textcolor=color.green, // text=varningtextpositiv, // style=label.style_label_down, // textalign=text.align_left) //Skapar en textruta med varningstext för negativ trend varningtextnegativ = "Varning för negativ trend."+"\n" + "Leta efter utgången!" // if NegativTrend // varningnegativ=label.new( // bar_index, // low, // xloc=xloc.bar_index, // yloc=yloc.price, // color=color.black, // textcolor=color.red, // text=varningtextnegativ, // style=label.style_label_up, // textalign=text.align_left) //Köp om positiv trend if (PositivTrend) strategy.entry("Ta position", strategy.long, when = PositivTrend) //Sälj om negativ trend if (NegativTrend) strategy.close("Ta position", when = NegativTrend, comment="Gå ur position") //Beräkning av positiv trend vspositiv(positiv)=>valuewhen(Endbar==startbar,positiv,0) vepositiv(positiv)=>valuewhen(Endbar==Endbar,positiv,0) positivmean(TrendPositiv)=> csumpositiv = cum(TrendPositiv) //Slut// a = vepositiv(csumpositiv) //Start// b = vspositiv(csumpositiv) //Slut - Start// (a - b)/(tid) positivmeanpositiv = positivmean(TrendPositiv) //Beräkning av negativ trend vsnegativ(negativ)=>valuewhen(Endbar==startbar,negativ,0) venegativ(negativ)=>valuewhen(Endbar==Endbar,negativ,0) negativmean(TrendNegativ)=> csumnegativ = cum(TrendNegativ) //Slut// a = venegativ(csumnegativ) //Start// b = vsnegativ(csumnegativ) //Slut - Start// (a - b)/(tid) negativmeannegativ = negativmean(TrendNegativ) //Inmatning av text som ska in i texruta som visar antal staplar i trend logga = "© Investoz: Trend i tid"+ "\n" streck = "--------------------------------------------------------" totalastaplar = "\n" + "Dagar totalt: " + tostring(tid)+ " dagar "+"\n"+ streck + "\n" totalpositiv = "Dagar totalt i positiv trend "+" 📈 : " +tostring(positivmeanpositiv*tid, "##.##") +" dagar " + "\n" totalnegativ = "\n" + "Dagar totalt i negativ trend" + " 📉 : " +tostring(negativmeannegativ*tid, "##.##") +" dagar " //Textruta för antal staplar i trend // if barstate.ishistory // barcountlbl=label.new( // bar_index, // low, // xloc=xloc.bar_index, // yloc=yloc.price, // color=color.black, // textcolor=color.yellow, // text=logga+streck+totalastaplar+totalpositiv+streck+totalnegativ, // style=label.style_label_lower_left, // textalign=text.align_left) // label.delete(barcountlbl[1]) //////////////////////////////////