TradingView FRAMA Strategy Development
Budget: $10 – $30 USD
I need a Pine Script strategy built for TradingView that follows the exact FRAMA-based rules demonstrated in this video: https://youtu.be/f5zHBomRNnI?si=8sU0djdXplEiNi3Y
Core logic
• Replicate the entry and exit logic shown in the clip, using the FRAMA indicator for signal generation.
• Give me three independent exit options I can toggle on or off in the settings:
– Stop-loss calculated from ATR
– Take-profit calculated from ATR
– The discretionary exit rule explained in the video
ATR length and multiplier must be user-configurable.
Higher-timeframe filter
The strategy should open a new position only when there is already an active trade on one or more higher charts. I want to be able to specify Daily, 30-minute, 5-minute, and 1-minute as selectable filters. A simple drop-down or multi-select input that cascades through multiple security() calls is fine, as long as it is efficient.
Quality checkpoints
1. All inputs exposed in the settings panel with clear labels.
2. Strategy passes TradingView’s Pine Script v5 compilation with no warnings.
3. Results on a sample symbol should visually match the video’s behaviour when default settings are used.
4. Comment the code well enough that I can tweak lengths, multipliers, or even swap the ATR source later.
We might need to add more things to the strategy later so it might be an ongoing project:)
Core logic
• Replicate the entry and exit logic shown in the clip, using the FRAMA indicator for signal generation.
• Give me three independent exit options I can toggle on or off in the settings:
– Stop-loss calculated from ATR
– Take-profit calculated from ATR
– The discretionary exit rule explained in the video
ATR length and multiplier must be user-configurable.
Higher-timeframe filter
The strategy should open a new position only when there is already an active trade on one or more higher charts. I want to be able to specify Daily, 30-minute, 5-minute, and 1-minute as selectable filters. A simple drop-down or multi-select input that cascades through multiple security() calls is fine, as long as it is efficient.
Quality checkpoints
1. All inputs exposed in the settings panel with clear labels.
2. Strategy passes TradingView’s Pine Script v5 compilation with no warnings.
3. Results on a sample symbol should visually match the video’s behaviour when default settings are used.
4. Comment the code well enough that I can tweak lengths, multipliers, or even swap the ATR source later.
We might need to add more things to the strategy later so it might be an ongoing project:)