
এই কৌশলটি একটি চলমান গড় ক্রস-ভিত্তিক ট্রেডিং সিস্টেম যা ইএমএ এবং এসএমএ উভয় প্রকারের চলমান গড়কে সমর্থন করে এবং 1 ঘন্টা, 4 ঘন্টা, দৈনিক, ঘূর্ণিপথ এবং দ্বি-ঘূর্ণিপথের মতো একাধিক সময়কালের জন্য অপ্টিমাইজড ডিফল্ট প্যারামিটার সরবরাহ করে। সিস্টেমটি দ্রুত এবং ধীর গতির চলমান গড়ের ক্রস দ্বারা ট্রেডিং সংকেত উত্পন্ন করে এবং একটি দৃশ্যমান মূল্য অঞ্চল ভরাট সরবরাহ করে।
কৌশলটির মূল বিষয় হল দ্রুত এবং ধীর চলমান গড়ের ক্রস পর্যবেক্ষণের মাধ্যমে সম্ভাব্য প্রবণতা পরিবর্তন সনাক্ত করা। যখন দ্রুত চলমান গড়টি ধীর চলমান গড়ের উপরে উঠে যায়, তখন একটি মাল্টিসিগন্যাল তৈরি হয়; যখন দ্রুত চলমান গড়টি ধীর চলমান গড়ের নীচে নেমে যায়, তখন একটি ফাঁকা সংকেত তৈরি হয়। কৌশলটি কেবলমাত্র আরও বেশি, ফাঁকা এবং দ্বি-মুখী ব্যবসায়ের তিনটি মোডের বিকল্প সরবরাহ করে।
এটি একটি কঠোরভাবে অপ্টিমাইজড চলমান গড় ক্রস কৌশল যা একাধিক সময়কালের জন্য প্রযোজ্য। কৌশলটি বৈজ্ঞানিকভাবে প্যারামিটার অপ্টিমাইজড এবং নমনীয় কনফিগারেশন বিকল্পগুলির মাধ্যমে ব্যবসায়ীদের জন্য একটি নির্ভরযোগ্য প্রবণতা ট্র্যাকিং সরঞ্জাম সরবরাহ করে। যদিও কিছু অন্তর্নিহিত ঝুঁকি রয়েছে, তবে প্রস্তাবিত অপ্টিমাইজেশন দিকটি কৌশলটির স্থিতিশীলতা এবং নির্ভরযোগ্যতা আরও বাড়িয়ে তুলতে পারে। কৌশলটির নকশা ধারণাটি হ’ল ক্লাসিক প্রযুক্তিগত বিশ্লেষণের পদ্ধতিগুলিকে আধুনিক পরিমাণগত বিশ্লেষণের সরঞ্জামগুলির সাথে একত্রিত করা, যা ব্যবসায়ীদের জন্য একটি সহজ, সহজ এবং কঠোরভাবে যাচাই করা ট্রেডিং সিস্টেম সরবরাহ করে।
/*backtest
start: 2024-07-12 00:00:00
end: 2025-02-22 08:00:00
period: 1h
basePeriod: 1h
exchanges: [{"eid":"Binance","currency":"SOL_USDT"}]
*/
//@version=5
strategy("MA Crossover [ClémentCrypto]", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=20, initial_capital=10000,process_orders_on_close=true)
// Groupe pour le choix entre preset et personnalisé
usePreset = input.bool(title="Utiliser Preset", defval=true, group="Mode Selection")
// Inputs pour la stratégie
timeframeChoice = input.string(title="Timeframe Preset", defval="1H", options=["1H", "4H", "1D", "1W", "2W"], group="Preset Settings")
tradeDirection = input.string(title="Trading Direction", defval="Long Only", options=["Long Only", "Short Only", "Both Directions"], group="Strategy Settings")
// Paramètres personnalisés MA
customFastLength = input.int(title="Custom Fast MA Length", defval=23, minval=1, group="Custom MA Settings")
customSlowLength = input.int(title="Custom Slow MA Length", defval=395, minval=1, group="Custom MA Settings")
customMAType = input.string(title="Custom MA Type", defval="EMA", options=["SMA", "EMA"], group="Custom MA Settings")
// Paramètres MA optimisés pour chaque timeframe
var int fastLength = 0
var int slowLength = 0
var string maType = ""
if usePreset
if timeframeChoice == "1H"
fastLength := 23
slowLength := 395
maType := "EMA"
else if timeframeChoice == "4H"
fastLength := 41
slowLength := 263
maType := "SMA"
else if timeframeChoice == "1D"
fastLength := 8
slowLength := 44
maType := "SMA"
else if timeframeChoice == "1W"
fastLength := 32
slowLength := 38
maType := "SMA"
else if timeframeChoice == "2W"
fastLength := 17
slowLength := 20
maType := "SMA"
else
fastLength := customFastLength
slowLength := customSlowLength
maType := customMAType
// Calcul des moyennes mobiles
fastMA = maType == "SMA" ? ta.sma(close, fastLength) : ta.ema(close, fastLength)
slowMA = maType == "SMA" ? ta.sma(close, slowLength) : ta.ema(close, slowLength)
// Conditions de trading simplifiées
longEntier = ta.crossover(fastMA, slowMA)
longExit = ta.crossunder(fastMA, slowMA)
shortEntier = ta.crossunder(fastMA, slowMA)
shortExit = ta.crossover(fastMA, slowMA)
// Définition des couleurs
var BULL_COLOR = color.new(#00ff9f, 20)
var BEAR_COLOR = color.new(#ff0062, 20)
var BULL_COLOR_LIGHT = color.new(#00ff9f, 90)
var BEAR_COLOR_LIGHT = color.new(#ff0062, 90)
// Couleurs des lignes MA
fastMAColor = fastMA > slowMA ? BULL_COLOR : BEAR_COLOR
slowMAColor = color.new(#FF6D00, 60)
// Gestion des positions
if tradeDirection == "Long Only"
if (longEntier)
strategy.entry("Long", strategy.long)
if (longExit)
strategy.close("Long")
else if tradeDirection == "Short Only"
if (shortEntier)
strategy.entry("Short", strategy.short)
if (shortExit)
strategy.close("Short")
else if tradeDirection == "Both Directions"
if (longEntier)
strategy.entry("Long", strategy.long)
if (longExit)
strategy.close("Long")
if (shortEntier)
strategy.entry("Short", strategy.short)
if (shortExit)
strategy.close("Short")
// Plots
var fastMAplot = plot(fastMA, "Fast MA", color=fastMAColor, linewidth=2)
var slowMAplot = plot(slowMA, "Slow MA", color=slowMAColor, linewidth=1)
fill(fastMAplot, slowMAplot, color=fastMA > slowMA ? BULL_COLOR_LIGHT : BEAR_COLOR_LIGHT)
// Barres colorées
barcolor(fastMA > slowMA ? color.new(BULL_COLOR, 90) : color.new(BEAR_COLOR, 90))