यह रणनीति प्रवृत्ति के लिए बाजार की प्रवृत्ति की दिशा निर्धारित करने के लिए फ्रैक्टल कैओस ऑसिलेटर (एफसीओ) संकेतक का उपयोग करती है। एफसीओ -1 और 1 के बीच के मूल्यों के साथ मूल्य आंदोलन का न्याय करने के लिए स्थानीय उच्च और निम्न में परिवर्तन की तुलना करता है। उच्च मूल्य मजबूत रुझानों का संकेत देते हैं। एफसीओ उच्च मूल्यों तक पहुंचने पर लंबा, और कम मूल्यों तक पहुंचने पर छोटा।
विशिष्ट मोमबत्ती पैटर्न की तलाश करके स्थानीय उच्च और निम्न की पहचान करें। एफसीओ संकेतक की गणना करने के लिए उच्च / निम्न के आसन्न समूहों के बीच परिवर्तनों की तुलना करें। उदाहरण के लिए, यदि नवीनतम उच्च / निम्न समूह पिछले समूह से भिन्न है, तो एफसीओ 1 है, जो अपट्रेंड की ताकत को बढ़ रहा है। एफसीओ मूल्य के आधार पर प्रवृत्ति दिशा निर्धारित करें - उच्च मूल्यों पर लंबा और निम्न मूल्यों पर छोटा जाएं।
मापदंडों के अनुकूलन और प्रतिवर्तन संकेतकों के जोड़ के माध्यम से जोखिमों को कम किया जा सकता है।
एफसीओ रणनीति अल्पकालिक व्यापार के लिए प्रवृत्ति दिशा निर्णय को सरल बनाती है। पैरामीटर ट्यूनिंग के माध्यम से प्रदर्शन में सुधार किया जा सकता है। एक आसानी से लागू प्रवृत्ति के बाद अवधारणा।
/*backtest start: 2023-09-10 00:00:00 end: 2023-09-17 00:00:00 period: 1m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 22/02/2018 // The value of Fractal Chaos Oscillator is calculated as the difference between // the most subtle movements of the market. In general, its value moves between // -1.000 and 1.000. The higher the value of the Fractal Chaos Oscillator, the // more one can say that it follows a certain trend – an increase in prices trend, // or a decrease in prices trend. // // Being an indicator expressed in a numeric value, traders say that this is an // indicator that puts a value on the trendiness of the markets. When the FCO reaches // a high value, they initiate the “buy” operation, contrarily when the FCO reaches a // low value, they signal the “sell” action. This is an excellent indicator to use in // intra-day trading. // // You can change long to short in the Input Settings // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// fractalUp(pattern) => p = high[pattern+1] okl = 1 okr = 1 for i = pattern to 1 okl := iff(high[i] < high[i+1] and okl == 1 , 1, 0) for i = pattern+2 to pattern*2+1 okr := iff(high[i] < high[i-1] and okr == 1, 1, 0) res = iff(okl == 1 and okr == 1, p, res[1]) res fractalDn(pattern) => p = low[pattern+1] okl = 1 okr = 1 for i = pattern to 1 okl := iff(low[i] > low[i+1] and okl == 1 , 1, 0) for i = pattern+2 to pattern*2+1 okr := iff(low[i] > low[i-1] and okr == 1, 1, 0) res = iff(okl == 1 and okr == 1, p, res[1]) res strategy(title="Fractal Chaos Oscillator", overlay = false) Pattern = input(1, minval=1) reverse = input(false, title="Trade reverse") xUpper = fractalUp(Pattern) xLower = fractalDn(Pattern) xRes = iff(xUpper != xUpper[1], 1, iff(xLower != xLower[1], -1, 0)) pos = iff(xRes == 1, 1, iff(xRes == -1, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(xRes, color=blue, title="FCO")