अधिकांश traders AI का सामान्य तरीके से उपयोग करते हैं — वे कुछ अस्पष्ट पूछते हैं और अस्पष्ट जवाब पाते हैं। नीचे दिए गए prompts specific, tested, और copy के लिए तैयार हैं। हर एक एक concrete output produce करता है: working code, एक detailed strategy, या actionable analysis।
ये ChatGPT और Claude (code के लिए मेरी सिफारिश) पर काम करते हैं।
TradingView के लिए एक complete, working indicator generate करता है। बस describe करें कि आप क्या चाहते हैं।
📋 CopyYou are an expert in Pine Script v5 for TradingView. Create an indicator that:
– Combines RSI (14) with EMA (9) and EMA (21)
– Shows a green BUY arrow when: RSI < 30 AND EMA 9 crosses above EMA 21
– Shows a red SELL arrow when: RSI > 70 AND EMA 9 crosses below EMA 21
– Paints candles green (uptrend) or red (downtrend)
– Adds alerts for both signals
– Dashboard in the top-right corner showing: current RSI, EMA position, last signal
– All parameters configurable by the user
Complete, working code, with comments in English.
🎯 आपको क्या मिलता है:
Complete Pine Script v5 code (~80-120 lines)। TradingView में paste करें → Add to chart → काम करता है।
AI आपको Deriv Bot के visual blocks पर strategy बनाने में step-by-step मार्गदर्शन करता है।
📋 CopyI want to build a strategy on Deriv Bot (visual block platform, no code) for the Volatility 75 Index. The strategy must:
1. Use Rise/Fall contracts with 5-tick duration
2. Start with $0.50 stake
3. After a loss, increase the stake by 50% (moderate Martingale)
4. After a profit, return to the original stake
5. Max 4 consecutive increases (then back to original and stop)
6. Total stop loss: $25
7. Total take profit: $15
Explain step by step how to set up each block on Deriv Bot:
– Trade Parameters (market, asset, type)
– Purchase Conditions (direction, stake, duration)
– Trade Again (Martingale logic, stop loss, take profit)
Include which Utility and Analysis blocks to use. Simple language, for beginners.
🎯 आपको क्या मिलता है:
Deriv Bot पर बनाने के लिए step-by-step guide। कोई code नहीं — बस blocks drag करना।
एक complete Python bot generate करता है जो official Deriv API के माध्यम से automatically trade करता है।
📋 CopyBuild a trading bot in Python using the official Deriv API (WebSocket wss://ws.derivws.com/websockets/v3).
Requirements:
– Connect via WebSocket and authenticate with API token
– Trade on Volatility 75 Index (R_75)
– Strategy: buy CALL when RSI(14) < 30, PUT when RSI(14) > 70
– Compute RSI using the last 100 candles (via “ticks_history” endpoint)
– 5-tick contracts, $1 stake
– Stop loss: stop if total loss > $50
– Take profit: stop if total profit > $25
– Log every trade: time, direction, result, profit/loss, balance
– Save results to CSV
– Use asyncio + websockets
– DEMO mode by default
Complete, working code, comments in English.
WARNING at the start: “Use only on a demo account. Trading involves risk.”
🎯 आपको क्या मिलता है:
RSI, stop loss, CSV के साथ पूरा Python script (~150-200 lines)। Run: python bot.py
AI आपकी उपयोग की जा रही strategy का विश्लेषण करता है और कमज़ोरियाँ बताता है।
📋 CopyCritically analyze this trading strategy I’m using:
[DESCRIBE YOUR STRATEGY HERE — asset, timeframe, indicators, entry/exit rules, risk management]
I want you to:
1. Identify the STRENGTHS of the strategy
2. Identify the WEAKNESSES and hidden risks
3. Suggest 3 concrete improvements
4. Estimate the expected win rate (based on the logic)
5. Calculate the risk-reward ratio
6. Honestly tell me if this strategy has a chance of being profitable long-term
7. Suggest an appropriate risk management plan
Be brutally honest. I’d rather hear the truth than lose money.
🎯 आपको क्या मिलता है:
Pros, cons, risk-reward, और improvement suggestions के साथ पूरा analysis। एक मुफ्त mentor की तरह।
MetaTrader 5 के लिए complete Expert Advisor generate करता है (Deriv पर उपलब्ध)।
📋 CopyYou are an MQL5 specialist. Create a complete Expert Advisor for MetaTrader 5 that:
– Trades EUR/USD, H1 timeframe
– Strategy: EMA 9 and EMA 21 crossover with MACD confirmation
– Buy when EMA 9 crosses above EMA 21 AND MACD histogram > 0
– Sell when EMA 9 crosses below EMA 21 AND MACD histogram < 0
– Stop Loss: 50 pips
– Take Profit: 100 pips (risk-reward 1:2)
– Trailing stop of 30 pips
– Risk per trade: 2% of balance
– Max 1 open position at a time
– Trade only during market hours (08:00-17:00 GMT)
Complete MQL5 code, compilable, with comments in English.
Include OnInit(), OnTick(), and helper functions.
🎯 आपको क्या मिलता है:
MQL5 में पूरा EA (~200-300 lines)। MetaEditor में paste करें → Compile → Deriv MT5 पर Run करें।
बेहतर परिणामों के लिए Tips
- Specific रहें: Prompt में जितनी अधिक details, उतना अच्छा result
- Comments माँगें: हमेशा “comments in English” माँगें ताकि code समझ सकें
- Iterate करें: यदि result perfect नहीं है, पूछें: “Adjust X and Y”
- Errors test करें: यदि error आए, error message paste करें और fix माँगें
- Code के लिए Claude का उपयोग करें: मेरे अनुभव में, Claude ChatGPT से cleaner code generate करता है
- हमेशा पहले demo: Live account पर untested code कभी न चलाएँ
⚠️ शैक्षिक content। Trading में जोखिम है। Affiliate links शामिल हैं।
Disclaimer।