Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Chidiroglou

Members
  • Posts

    78
  • Joined

  • Last visited

1 Follower

About Chidiroglou

  • Birthday 12/21/1969

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Chidiroglou's Achievements

  1. Hat es jemand geschaft die datei für den NT8 zu komplimieren und das der Indicator richtig erscheind im Chart?
  2. It looks pretty good with a few tweaks: 9:00 AM, 11:45 AM, and from 3:30 PM until just before closing time : 9:00 Uhr, 11:45 Uhr und ab 15:30 Uhr.
  3. Thank you very much for pointing that out
  4. alazif What do you think?
  5. It’s a shame, rcarlos1947; since the last signal at 02:42 yesterday, there hasn’t been a counter-signal. That’s 778 ticks so far, which means that if I’d gone with it, it would have been at $9,725.00 by the close of trading.
  6. rcarlos1847 Ich hatte eigentlich vor, die Datei mit jemandem durchzugehen und zu verbessern, bevor ich sie weiterleite. Aber wenn Sie mir helfen können, den Code zu optimieren, schicke ich sie Ihnen gerne.
  7. I've sent you a message
  8. Perhaps someone might have time to tweak my indicator or tweak something else. The GammaSniperProV1 is therefore: A breakout and trend-following system Uses a flip line + ATR + SMA for entry and risk management Automatically plots entry, SL, TP and the flip line on the chart Includes cooldowns and volatility filters to reduce false signals MACD, EMA MTF and TrendMagic MTF are available but currently inactive
  9. swiattrader Thanks a lot, I'll give it a go
  10. I know what you mean; this code should include entry signals, targets and stop-loss levels
  11. #region Using declarations using System; using System.Windows.Media; using NinjaTrader.NinjaScript; using NinjaTrader.NinjaScript.Indicators; using NinjaTrader.NinjaScript.DrawingTools; using NinjaTrader.Data; using NinjaTrader.Cbi; #endregion namespace NinjaTrader.NinjaScript.Indicators { public class AutoFibIndicator : Indicator { private int lookback = 20; private double swingHigh; private double swingLow; private MAX maxIndicator; private MIN minIndicator; // Farben frei wählbar [NinjaScriptProperty] public Brush Fib382Color { get; set; } [NinjaScriptProperty] public Brush Fib50Color { get; set; } [NinjaScriptProperty] public Brush Fib618Color { get; set; } [NinjaScriptProperty] public Brush LongColor { get; set; } [NinjaScriptProperty] public Brush ShortColor { get; set; } protected override void OnStateChange() { if (State == State.SetDefaults) { Name = "AutoFibIndicator"; Calculate = Calculate.OnBarClose; IsOverlay = true; IsSuspendedWhileInactive = true; Fib382Color = Brushes.DodgerBlue; Fib50Color = Brushes.Gray; Fib618Color = Brushes.Gold; LongColor = Brushes.Lime; ShortColor = Brushes.Red; } else if (State == State.Configure) { // Hier können Konfigurationen vorgenommen werden } else if (State == State.DataLoaded) { // MAX und MIN Indikatoren initialisieren maxIndicator = MAX(High, lookback); minIndicator = MIN(Low, lookback); } } protected override void OnBarUpdate() { if (CurrentBar < lookback) return; if (maxIndicator == null || minIndicator == null) return; // Aktuelle Swing High und Low abrufen swingHigh = maxIndicator[0]; swingLow = minIndicator[0]; double range = swingHigh - swingLow; double fib382 = swingHigh - range * 0.382; double fib50 = swingHigh - range * 0.5; double fib618 = swingHigh - range * 0.618; int startBar = CurrentBar - lookback; // Bestehende Linien löschen, um Überlappungen zu vermeiden string fib382Tag = "Fib382"; string fib50Tag = "Fib50"; string fib618Tag = "Fib618"; RemoveDrawObject(fib382Tag); RemoveDrawObject(fib50Tag); RemoveDrawObject(fib618Tag); // === FIB LINIEN === Draw.Line(this, fib382Tag, false, startBar, fib382, CurrentBar, fib382, Fib382Color, DashStyleHelper.Solid, 2); Draw.Line(this, fib50Tag, false, startBar, fib50, CurrentBar, fib50, Fib50Color, DashStyleHelper.Dash, 2); Draw.Line(this, fib618Tag, false, startBar, fib618, CurrentBar, fib618, Fib618Color, DashStyleHelper.Solid, 3); // === SIGNAL LOGIK === string longTag = "Long" + CurrentBar; string shortTag = "Short" + CurrentBar; // LONG (Bounce über 61.8) if (Close[0] > fib618 && Close[1] <= fib618) { Draw.ArrowUp(this, longTag, false, 0, Low[0] - (2 * TickSize), LongColor); } // SHORT (Reject unter 61.8) if (Close[0] < fib618 && Close[1] >= fib618) { Draw.ArrowDown(this, shortTag, false, 0, High[0] + (2 * TickSize), ShortColor); } } protected override void OnRender(ChartControl chartControl, ChartScale chartScale) { // Optional: Hier kann zusätzliches Rendering durchgeführt werden base.OnRender(chartControl, chartScale); } } }
  12. Added a grade for the number of Bull/Bear Badges, Added the ability to collapse the panel to only see the Grade & Title Sky_MTF--Grade-Minimize_Update.zip
  13. Sky_MTF-Panel.zip
  14. IT WOULD BE GREAT IF SOMEONE COULD UNLOCK IT
  15. IS IT THE ORIGINAL FILE OR THE UNLOCKED ONE?

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...