Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ICT Fair Value Gap

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Seankelly93
    replied
    Hi!
    Hope you are well!
    I was wondering if you could add to change the colour of the consequent encroachment hash line only.
    Cheers

    Leave a comment:


  • Kmace20
    replied
    Hello and happy new year gemify

    I am writing to ask if there has been any interval follow up or progress on the posts regarding making this indicator available to a strategy? I checked the github link but it seems it is no longer active. Personally, I have tried a few different approaches regarding the values of the FVG's but cannot seem to get the indicator to appear on the chart for the strategy after using "AddChartIndicator(*insert called indicator*);. Theoretically, the fvg.type, fvg.upperbound, and fvg.lowerbound should be able to be referenced from the strategy as they are stored in a list.

    I understand converting this indicator into a plotting format is quite the pain as each active FVG would have to have its own data series to be plotted on the chart and maintained. Plus you'd have to carry each plot with each bar until it's considered expired. I have other indicators that I use drawings with and have no problem calling them and associated values from in a strategy but am perplexed on this one.

    If you, or anyone else ( including tickets2themoon ) have any suggestions, I would love to hear them. Thanks so much!

    Leave a comment:


  • flipa4
    replied
    Hi gemify

    first of all let me thank you for the great work on this indicator.

    I'm trying to activate the FVG indicator data on Ninjatrader's data box but I'm not getting any result-
    I know that there is an option to do so on the indicator settings but its data doesn't appear on the data box after activating the checkbox. Can you please check if this option is working properly?

    Related with that, I would like to test one idea to automate my entries based on FVG zones but I see the indicator doesn't expose the data for 3rd party apps (for example Bloodhound).
    Is it possible to expose this inidicator data in order to use it on other Ninjatrader apps and indicators. This way I'll be able to configure and test my automatic entries.

    Thanks to confirm if that is possible.

    Best regards​

    Leave a comment:


  • rene69851
    replied
    Does this thing work in 30 seconds TF, look like it don't appear most of the time ?

    Leave a comment:


  • rene69851
    replied
    Originally posted by DarrenE View Post
    Hello, does anyone have a download link to the latest version ?

    Thank you
    The revised Fair Value Gap of gemify that was change on this Forum suggestion, author by
    zacharydw00 dated 07/03/2023. Choose wisely what you want to use.​
    Attached Files

    Leave a comment:


  • SaadAyouj
    replied
    Hello, I downloaded the indicator and it don't works for me, don't even show up, can someone helps me please ?

    Leave a comment:


  • DarrenE
    replied
    Hello, does anyone have a download link to the latest version ?

    Thank you

    Leave a comment:


  • giuliolamedica
    replied
    Hi, is this indicator still available for download?

    Leave a comment:


  • David Zahaluk
    replied
    Hi Gemify, I'm looking for an indicator for backtesting as well for a trading bot that recognizes the presence of FVGs in a certain configuration. Does that already exist or can it be designe.
    Thanks,
    David

    Leave a comment:


  • drewski1980
    replied
    gemifyI have an idea for this indicator. I was thinking of ways to make a FVG "stronger" and I think that way it could be done if if a volume component is added into it.

    I have two ideas. One way would be just the FVG bar volume compared to maybe the average of the last x bars volume....

    or perhaps another way to check the strength of the FVG bar would be using volume delta, the difference between aggressive buying and aggressive selling orders. Also, maybe another way could be to check the volume or volume delta of the bars that enter into the FVG?

    Also maybe the POC could be inplemented?

    I'm not sure what would be best, but maybe some volume traders might have a good idea?

    Leave a comment:


  • PrTester
    replied
    Thanks for the indicator. it is working great. Is there a way to apply this to an indicator. I.E. apply to the RSI or the MacD. Are they any plans to do it?. Thanks.

    Leave a comment:


  • andywallsq
    replied
    Hi gemify

    Tks for sharing this FVG indicator. It´s possible to use it in the strategy builder? Would be amazing to be able to automate entries and back test strategies

    Leave a comment:


  • abctrader
    replied
    Originally posted by dj22522 View Post
    TraderDan80 CyberBrid abctrader

    In the indicator Properties under Parameters, try changing the "Minimum FVG Size(Points)" to 0.0001

    Click image for larger version Name:	FVG for Currencies .jpg Views:	0 Size:	4.5 KB ID:	1288403

    Hope that helps
    Thx much - works like a charm now on any chart I'm applying it to

    Leave a comment:


  • jeff12ey
    replied
    Anyone success implement FVG in strategy?

    Below is my code, but it didn't display FVG in my chart.

    region Using declarations
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.ComponentModel.DataAnnotations;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Xml.Serialization;
    using NinjaTrader.Cbi;
    using NinjaTrader.Gui;
    using NinjaTrader.Gui.Chart;
    using NinjaTrader.Gui.SuperDom;
    using NinjaTrader.Gui.Tools;
    using NinjaTrader.Data;
    using NinjaTrader.NinjaScript;
    using NinjaTrader.Core.FloatingPoint;
    using NinjaTrader.NinjaScript.Indicators;
    using NinjaTrader.NinjaScript.DrawingTools;
    using System.Windows.Forms.VisualStyles;
    using NinjaTrader.NinjaScript.Indicators.Gemify;
    #endregion

    //This namespace holds Strategies in this folder and is required. Do not change it.
    namespace NinjaTrader.NinjaScript.Strategies
    {
    public class ICTStrategy : Strategy
    {
    private ICTFVG ictfvg;

    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    Description = @"Trade with FVG and BOS.";
    Name = "ICT_Concept_Trade";
    Calculate = Calculate.OnBarClose;
    EntriesPerDirection = 1;
    EntryHandling = EntryHandling.AllEntries;
    IsExitOnSessionCloseStrategy = true;
    ExitOnSessionCloseSeconds = 30;
    IsFillLimitOnTouch = true;
    MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
    OrderFillResolution = OrderFillResolution.Standard;
    Slippage = 0;
    StartBehavior = StartBehavior.WaitUntilFlat;
    TimeInForce = TimeInForce.Gtc;
    TraceOrders = false;
    RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
    StopTargetHandling = StopTargetHandling.PerEntryExecution;
    BarsRequiredToTrade = 40;
    // Disable this property for performance gains in Strategy Analyzer optimizations
    // See the Help Guide for additional information
    IsInstantiatedOnEachOptimizationIteration = true;
    }
    else if (State == State.Configure)
    {
    AddDataSeries("ES 03-24", Data.BarsPeriodType.Minute, 5, Data.MarketDataType.Last);
    }
    else if (State == State.DataLoaded)
    {


    ictfvg = ICTFVG(Close, true, FVGPeriodTypes.Minute, 5, 1000, true, 10, 1.1, 0.01, FVGFillType.CLOSE_THROUGH, true, true,
    Brushes.Maroon, Brushes.Maroon, Brushes.DarkGreen, Brushes.DarkGreen, 13, 4, true, TextPosition.TopRight, new SimpleFont("Verdana", 12),
    Brushes.WhiteSmoke, Brushes.DimGray, Brushes.Blue, 50);
    AddChartIndicator(ictfvg);
    Print(ictfvg.FVGList.Count);
    }
    }

    protected override void OnBarUpdate()
    {
    }

    }
    }

    Leave a comment:


  • CyberBrid
    replied
    Originally posted by dj22522 View Post
    TraderDan80 CyberBrid abctrader

    In the indicator Properties under Parameters, try changing the "Minimum FVG Size(Points)" to 0.0001

    Click image for larger version Name:	FVG for Currencies .jpg Views:	0 Size:	4.5 KB ID:	1288403

    Hope that helps
    Amazin, but it really helped. thanks to the author for the indicator and to you personally for the advice.

    Leave a comment:

Latest Posts

Collapse

Topics Statistics Last Post
Started by CaptainJack, 05-29-2026, 05:09 AM
0 responses
414 views
0 likes
Last Post CaptainJack  
Started by CaptainJack, 05-29-2026, 12:02 AM
0 responses
275 views
0 likes
Last Post CaptainJack  
Started by charlesugo_1, 05-26-2026, 05:03 PM
0 responses
235 views
1 like
Last Post charlesugo_1  
Started by DannyP96, 05-18-2026, 02:38 PM
1 response
322 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by CarlTrading, 05-11-2026, 05:56 AM
0 responses
280 views
0 likes
Last Post CarlTrading  
Working...
X