NexusFi: Find Your Edge


Home Menu

 





GOMI all NT7/8 & SC; MP & Orderflow @ Gomicators.com from original GOMI


Discussion in Trading Reviews and Vendors

Updated
      Top Posters
    1. looks_one gomi with 90 posts (413 thanks)
    2. looks_two Silvester17 with 52 posts (362 thanks)
    3. looks_3 jmont1 with 19 posts (44 thanks)
    4. looks_4 yawaniga with 16 posts (10 thanks)
      Best Posters
    1. looks_one Silvester17 with 7 thanks per post
    2. looks_two gomi with 4.6 thanks per post
    3. looks_3 Neo1 with 4.3 thanks per post
    4. looks_4 jmont1 with 2.3 thanks per post
    1. trending_up 188,172 views
    2. thumb_up 1,009 thanks given
    3. group 136 followers
    1. forum 355 posts
    2. attach_file 185 attachments




 
Search this Thread

GOMI all NT7/8 & SC; MP & Orderflow @ Gomicators.com from original GOMI

  #221 (permalink)
 trader7e7 
Chennai India
 
Experience: Beginner
Platform: Ninjatrader 8
Broker: Tradeplus,Esignal,Truedata
Trading: Indian equities commodity
Posts: 17 since Apr 2011
Thanks Given: 13
Thanks Received: 20


gomi View Post
Hi guys,

Just a quick post to mention a couple updates I added on the latest NT8 version(V8c)

* The Values, Levels, CustomValue and CustomUpDown indicators have been improved can now be used
- in Market Analyzer
- in Bloodhound (to test strats)
- in Ninja Alert manager (to send emails or play sounds)

Please note that for now,the Market Analyser will allways be 1 tick late, but it might change if Ninja updates their design
*I added the possibility to add any NinjaTrader indicator in the custom expressions, so, for instance if you want to plot the crossover of 2 MAs signals, here is the formula you can use :



*I added the possibilty to reference the custom indicator's own values in the formula(CustomValue, or CustomUpSignal and CustomDownSignal), so you can build stuff like @ninjus (thanks for the chart !!! )



*I added a new text setting : Delta only, it shows only the delta on the bars.



Hope you find it helpful!

PS : you can find it here : https://www.gomicators.com/download/


Thanks Gomi for the enhancements

Reply With Quote
The following user says Thank You to trader7e7 for this post:

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
Request for MACD with option to use different MAs for fa …
NinjaTrader
NexusFi Journal Challenge - April 2024
Feedback and Announcements
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Retail Trading As An Industry
62 thanks
NexusFi site changelog and issues/problem reporting
47 thanks
Battlestations: Show us your trading desks!
35 thanks
GFIs1 1 DAX trade per day journal
32 thanks
What percentage per day is possible? [Poll]
31 thanks

  #222 (permalink)
 gomi 
Paris
Market Wizard
 
Experience: None
Platform: NinjaTrader
Posts: 1,270 since Oct 2009
Thanks Given: 282
Thanks Received: 4,505

Hi,

A short message to mention that after I had quite some requests for the GomCD on NT8, I have published a free one.

Nothing fancy, only Candlesticks and a Delta dataseries if you wish to do delta calculations

See https://www.gomicators.com/download/



Hope you enjoy !

Reply With Quote
The following 9 users say Thank You to gomi for this post:
  #223 (permalink)
 gomi 
Paris
Market Wizard
 
Experience: None
Platform: NinjaTrader
Posts: 1,270 since Oct 2009
Thanks Given: 282
Thanks Received: 4,505


Hi,
I added on NT8 the possibility to do your very own Orderflow analysis with custom indicators ; you can now access all the buy/sell info from the GomOrderFlow-Values indicator, and iterate through all price levels.

Here's an example that finds maximum buys and sells on each bar

Code:
 
Code
                            
        void OnUpdate(int i)

        {
            
//i contains the bar offset. On historical data it will usually be 1, 
            //because we wait for the bar to be complete, and on the first tick of the next bar, 
            //we update the completed bar which now has an offset of 1. On realtime data it will be 0.
        
            //gof.BarData containes the buys/sells values from all the bars. 
            //it's indexed like a NinjaTrader dataseries so gof.BarData[0] is the last one.
            //iterate the bar fom MinTick to Maxtick
            
int maxbuy=0;
            
int maxsell=0;
            
//let's compute the max sell and min sell of last bar
            // we iterate through all the prices from mintick to maxtick ( real price is xTickSize)
            
for (int j=gof.BarData[i].MinTickj<=gof.BarData[i].MaxTick;j++)  
            {
                if (
gof.BarData[i].Sells[j]>maxsell)
                    
maxsellgof.BarData[i].Sells[j];  // compute maxsells
                    
                    
if (gof.BarData[i].Buys[j]>maxbuy)
                    
maxbuygof.BarData[i].Buys[j]    ;// compute maxbuys
            
}
            
//update max buys plot at the i offset ( i is 1 or 0)
            
Values[0][i]=maxbuy;
            
//update max sells plot  at the i offset ( i is 1 or 0)
            
Values[1][i]=maxsell;        
        } 
Here's the result


Hope you find it useful!

Reply With Quote
The following 7 users say Thank You to gomi for this post:
  #224 (permalink)
 trader7e7 
Chennai India
 
Experience: Beginner
Platform: Ninjatrader 8
Broker: Tradeplus,Esignal,Truedata
Trading: Indian equities commodity
Posts: 17 since Apr 2011
Thanks Given: 13
Thanks Received: 20

anyone has tested market analyser - incorporating Gomi indicators.

Im trying to get it working, any help,,,,thanks


I have 10 odd Futures stocks which i am monitoring and i wud like to pick up stocks which has recovered 90 percent of the delta range on a 30 min timeframe.


on the custom signals for buy and sell. i use below code.

UP Delta[0]>MinDelta[0]+0.9*(MaxDelta[0]-MinDelta[0])
DOWN Delta[0]<MaxDelta[0]+0.9*(MinDelta[0]-MaxDelta[0])


how to get it working in the market analyser....?

Reply With Quote
  #225 (permalink)
 gomi 
Paris
Market Wizard
 
Experience: None
Platform: NinjaTrader
Posts: 1,270 since Oct 2009
Thanks Given: 282
Thanks Received: 4,505

It should work as is, just show the CustomUpSignal and CustomDownSignal in Market analyzer

Reply With Quote
The following 5 users say Thank You to gomi for this post:
  #226 (permalink)
 grose 
Philadelphia, PA, USA
 
Experience: Intermediate
Platform: NT, AmiBroker
Trading: 6E
Posts: 34 since Oct 2010
Thanks Given: 9
Thanks Received: 6

Hi,

I've looked through a number of threads, including the ones below, to try to understand how to take the values that GOMI's *incredible* indicators calculate and make them available to other indicators and strategies (this is NT7). And thank you *very much* for your outstanding work, GOMI.

I'm specifically interested in the per-bar Delta, and, it is easy enough to find where it is calculated in the volume ladder indicator and added to the collection of values that the helper object holds. Can anyone comment on a general strategy for making those values publicly available in Ninjascript? I've tried a number of things, adding public fields, adding a Add(Plot) method to the GOMI initialize method, etc. Thanks!







Regards, Gordon

Reply With Quote
The following user says Thank You to grose for this post:
  #227 (permalink)
 gomi 
Paris
Market Wizard
 
Experience: None
Platform: NinjaTrader
Posts: 1,270 since Oct 2009
Thanks Given: 282
Thanks Received: 4,505

you don't need the ladder, the Delta should be available in the GomCD indicator as a DeltaValue Plot.

Reply With Quote
The following 2 users say Thank You to gomi for this post:
  #228 (permalink)
 jmont1 
New York, NY
 
Experience: Intermediate
Platform: NinjaTrader8
Broker: Data = Rithmic -- Gives 70 Level II Data
Trading: 6C (Low Margin,) 6E, CL, GC, ES and Maybe DX for smaller tick value
Posts: 1,394 since May 2011
Thanks Given: 1,719
Thanks Received: 1,019


gomi View Post
you don't need the ladder, the Delta should be available in the GomCD indicator as a DeltaValue Plot.

@gomi, May I request a way to get the numbers to print rather than just the candlestick in the indicator panel. Right now you cannot tell the bar total, Up/Down, or cumulative total by looking at the chart without using the Data Box and that only provides a single value which needs to be on the screen all the time.

Thanks for any adjustments in the future.

Started this thread Reply With Quote
  #229 (permalink)
 gomi 
Paris
Market Wizard
 
Experience: None
Platform: NinjaTrader
Posts: 1,270 since Oct 2009
Thanks Given: 282
Thanks Received: 4,505

Hi everyone,

Wish you all best of trading for 2019 !

A quick post to mention a new version of Orderflow and MarketProfile is available.

Lots of new features , you can get a complete list with more examples and pics here

Here's a quick list

NT7 Only:

* All previous stuff mentioned for NT8 now available to NT7 as well (individual access to ladder bars for custom indicators see this post , enhanced custom expressions see this post )

On the Orderflow

* New AutoScale that will always make the cells the same size, to ensure maximum readability. It might truncate some bars on the beginning of the chart, but the last bars will have perfectly readable cells

On:


Off:


* New DeltaOnly TextMode and ColorMode

* New Outline FillType that allows to see colors behind the POC cell or the UA cell

* Added BuySells in the Top/Bottom values


On the MP

* Biggest improvement is a new custom session management, allowing the split the main session in multiple subsessions and be able to show RTH only or ETH


* The session manager is time zoned so this will take care of the 1 hour special offset Europe has with the US during 1 week on DST change.


* Also added a ValueArea ColorMode, and ability to set the VAPercent value (default 70%)


* Added an "EveryNBar" Plot Mode, it will reset the profile every N bars.



Hope you like it, and as usual, you can get a free 7 day trial version to explore the new features.

Gomi

Reply With Quote
The following 9 users say Thank You to gomi for this post:
  #230 (permalink)
yawaniga
chennai/india
 
Posts: 155 since Sep 2015
Thanks Given: 111
Thanks Received: 149



trader7e7 View Post
anyone has tested market analyser - incorporating Gomi indicators.

Im trying to get it working, any help,,,,thanks


I have 10 odd Futures stocks which i am monitoring and i wud like to pick up stocks which has recovered 90 percent of the delta range on a 30 min timeframe.


on the custom signals for buy and sell. i use below code.

UP Delta[0]>MinDelta[0]+0.9*(MaxDelta[0]-MinDelta[0])
DOWN Delta[0]<MaxDelta[0]+0.9*(MinDelta[0]-MaxDelta[0])


how to get it working in the market analyser....?

Hi trader7e7,

Hope the above code works @market Analyser.,If time permits pls elaborate

Reply With Quote





Last Updated on August 11, 2023


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts