Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
The beauty of this framework is that you don’t actually need a complex custom script or proprietary black-box indicator code to study it. It relies entirely on pure, transparent arithmetic that you can plot yourself using the standard Fibonacci Extension/Retracement tools already built into your platform.If you want to duplicate the exact visual template and study the mechanics, here is the architectural blueprint along with the specific color-coded frequency layers to set it up manually on your charts:The Structural SetupTimeframe: 15-Minute Chart.The Anchor: Pick a significant Swing-High or Swing-Low.The Execution Metric: Orient your tool coordinates strictly by the Body-Close prices—completely ignore the wicks (noise).The Custom Grid Configuration & Color CodesOpen your standard Fibonacci tool settings and input these exact coordinates and colors:
🟡 123.6% / -23.6% (Yellow): The Danger Point (Visual reference point for deeper complexity).
🟢 113.6% / -13.6% (Green): The Core Pivot Point (The Holy Grail exhaustion reflex where liquidity bottlenecks dry out).
🔵 106.8% / -6.8% (Cyan/Blue): The Confirmation Trigger (Derived from breaking the outer limit twice: $27.2\% \div 2 \div 2 = 6.8\%$).
⚪ 100.0% / 0.0% (Grey): Your structural baseline anchors.
⚪ 50.0% (Grey): "The Angel" (The balance center point).
By setting these levels and color-matched zones up manually, you can instantly backtest how algorithmically driven institutional orders react to the 113.6% (Green) frequency across historical data.Feel free to plug these hard levels and hex colors into a simple script in NinjaScript or ThinkScript if you prefer an automated layout.
Looking forward to seeing what your structural analysis uncovers!Best regards,
#region Using declarations
using System;
using System.ComponentModel.DataAnnotations;
using System.Windows.Media;
using NinjaTrader.Gui.Tools;
using NinjaTrader.NinjaScript;
using NinjaTrader.NinjaScript.DrawingTools;
#endregion
namespace NinjaTrader.NinjaScript.Indicators
{
public class GRD_PredictionResonanceGrid : Indicator
{
private double swingHigh = 0;
private double swingLow = 0;
private int swingHighBar = -1;
private int swingLowBar = -1;
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Name = "GRD_PredictionResonanceGrid";
Description = "Prediction Resonance Grid 106.8 / 113.6 / 123.6 / 127.2 basado en cierres de swing.";
Wow, that was fast! Outstanding work on translating the arithmetic framework into clean NinjaScript. You captured the structural logic perfectly.
Using Closes[1] to lock onto the true body-close swing transitions while completely neutralizing the noise of the wicks is exactly how the frequency stays stable. The color mapping (LimeGreen for the 113.6% core, DeepSkyBlue for the 106.8% trigger) is spot on and reflects the visual clarity perfectly.
I also noticed you added a diagonal structural anchor line (PR_DIAGONAL) from the swing low to the swing high—that’s a brilliant touch to visualize the field's vector momentum as it reaches out to the exhaustion levels.
Thank you for contributing this code to the community! It gives everyone a solid, automated blueprint to study and backtest these algorithmic bottleneck reactions.
Let the community know what your data shows once you run it through the historical sessions.