NexusFi: Find Your Edge


Home Menu

 





FootPrintV2 Chart for NT8


Discussion in Platforms and Indicators

Updated
      Top Posters
    1. looks_one mk77ch with 51 posts (262 thanks)
    2. looks_two trymph with 29 posts (29 thanks)
    3. looks_3 brettji with 20 posts (16 thanks)
    4. looks_4 Alinghy with 17 posts (1 thanks)
      Best Posters
    1. looks_one mk77ch with 5.1 thanks per post
    2. looks_two trymph with 1 thanks per post
    3. looks_3 brettji with 0.8 thanks per post
    4. looks_4 zt379 with 0.8 thanks per post
    1. trending_up 87,715 views
    2. thumb_up 402 thanks given
    3. group 130 followers
    1. forum 243 posts
    2. attach_file 117 attachments




 
Search this Thread
  #221 (permalink)
 Belltalks 
Chicago US
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL GC
Posts: 25 since May 2016
Thanks Given: 4
Thanks Received: 15

Hi all,
I'm starting to use the Footprint indicator and I really like what it offers.
Here is my Q, is it possible to programmatically access the VPOC of current or previous candle with the information provided by this indicator and referenced by other indicators? If so, I'd appreciate some hints/code that shows how to do it.
Thanks in advance,
BT

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Has anyone taken trading from Agnieska Wood - Ahead Coach?
Psychology and Money Management
MC PL editor upgrade
MultiCharts
Radarscreen
TradeStation
Brendt Skorupinsky
Trading Reviews and Vendors
Quantum physics & Trading dynamics
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
ApexTraderFunding.com experience and review
121 thanks
1 Minute Man
53 thanks
HumbleTraders next chapter
44 thanks
Winning attitudes create winning traders
36 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
25 thanks
  #222 (permalink)
 
mk77ch's Avatar
 mk77ch 
Switzerland
 
Experience: Advanced
Platform: NinjaTrader
Broker: Dorman
Trading: Currency Futures, ES
Posts: 141 since Oct 2010
Thanks Given: 29
Thanks Received: 364

Hello,

at the current state of the indicator, there are no accessible data series for the footprint data available. I have some plans to extract the BarItem to an own Indicator which then would have all the data made accessible for indicators and strategies but this is still a project i am working on without any specifig ETA.

All the best,
Mike


Belltalks View Post
Hi all,
I'm starting to use the Footprint indicator and I really like what it offers.
Here is my Q, is it possible to programmatically access the VPOC of current or previous candle with the information provided by this indicator and referenced by other indicators? If so, I'd appreciate some hints/code that shows how to do it.
Thanks in advance,
BT


I never lose. I either win or learn.
Nelson Mandela

The Potion | Konje | Pride | Stick Season | Breathe
Started this thread Reply With Quote
  #223 (permalink)
 
mk77ch's Avatar
 mk77ch 
Switzerland
 
Experience: Advanced
Platform: NinjaTrader
Broker: Dorman
Trading: Currency Futures, ES
Posts: 141 since Oct 2010
Thanks Given: 29
Thanks Received: 364


After some thoughts, i finally exported the BarItems to an own Indicator (BarData) which is also used by the FootPrintV2 indicator to access the ladder data for the bars and the profiles.

I've attached Test.cs to this post, which is an example indicator on how to access the BarItems provided by the BarData indicator.

The BarItems which can be accessed provide the following per bar data:

 
Code
BarItem
---------------------------
int    idx	        // bar index
bool   ifb	        // is first bar of session
bool   clc	        // internally used to check if the bar item has to be re-calculated
double min	// minimum price
double max 	// maximum price
double rng	// range in ticks
double opn	// open price
double cls	// close price
double vol	// total volume
double ask	// ask volume
double bid	// bid volume
double dtc	// delta close
double dtl	// delta low
double dth	// delta high
double cdo	// cumulative delta open
double cdl	// cumulative delta low
double cdh	// cumulative delta high
double cdc	// cumulative delta close
double poc	// point of control (price)
double avg	// average volume (total volume / rows)

ConcurrentDictionary rowItems	// bar row items

Profile custProfile	// custom profile
Profile currProfile	// current session profile
Profile prevProfile	// previous session profile


RowItem
---------------------------
double vol	// volume
double ask	// ask volume
double bid	// bid volume
double dta	// volume delta


Profile
---------------------------
int        bar	// first bar used for profile calculation
double min	// minimum price
double max	// maximum price
double rng	// range in ticks
double opn	// open price
double cls	// close price
double vol	// total volume
double ask	// ask volume
double bid	// bid volume
double dta	// volume delta
double poc	// point of control (price)
double vah	// value area high
double val	// value area low
double avg	// average volume (total volume / rows)

ConcurrentDictionary rowItems // profile row items
All the best,
Mike




Belltalks View Post
Hi all,
I'm starting to use the Footprint indicator and I really like what it offers.
Here is my Q, is it possible to programmatically access the VPOC of current or previous candle with the information provided by this indicator and referenced by other indicators? If so, I'd appreciate some hints/code that shows how to do it.
Thanks in advance,
BT


I never lose. I either win or learn.
Nelson Mandela

The Potion | Konje | Pride | Stick Season | Breathe
Attached Files
Elite Membership required to download: Test.cs
Started this thread Reply With Quote
Thanked by:
  #224 (permalink)
 Belltalks 
Chicago US
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL GC
Posts: 25 since May 2016
Thanks Given: 4
Thanks Received: 15


mk77ch View Post
After some thoughts, i finally exported the BarItems to an own Indicator (BarData) which is also used by the FootPrintV2 indicator to access the ladder data for the bars and the profiles.

I've attached Test.cs to this post, which is an example indicator on how to access the BarItems provided by the BarData indicator.

The BarItems which can be accessed provide the following per bar data:

 
Code
BarItem
---------------------------
int    idx	        // bar index
bool   ifb	        // is first bar of session
bool   clc	        // internally used to check if the bar item has to be re-calculated
double min	// minimum price
double max 	// maximum price
double rng	// range in ticks
double opn	// open price
double cls	// close price
double vol	// total volume
double ask	// ask volume
double bid	// bid volume
double dtc	// delta close
double dtl	// delta low
double dth	// delta high
double cdo	// cumulative delta open
double cdl	// cumulative delta low
double cdh	// cumulative delta high
double cdc	// cumulative delta close
double poc	// point of control (price)
double avg	// average volume (total volume / rows)

ConcurrentDictionary rowItems	// bar row items

Profile custProfile	// custom profile
Profile currProfile	// current session profile
Profile prevProfile	// previous session profile


RowItem
---------------------------
double vol	// volume
double ask	// ask volume
double bid	// bid volume
double dta	// volume delta


Profile
---------------------------
int        bar	// first bar used for profile calculation
double min	// minimum price
double max	// maximum price
double rng	// range in ticks
double opn	// open price
double cls	// close price
double vol	// total volume
double ask	// ask volume
double bid	// bid volume
double dta	// volume delta
double poc	// point of control (price)
double vah	// value area high
double val	// value area low
double avg	// average volume (total volume / rows)

ConcurrentDictionary rowItems // profile row items
All the best,
Mike

That's awesome, Mike.
Thanks again

Reply With Quote
  #225 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,635 since Aug 2009
Thanks Given: 11,392
Thanks Received: 2,781


Belltalks View Post
That's awesome, Mike.
Is the Bardata indicator available for download?
Thanks again

The FootPrintv2 has been updated with Bardata
Update it and install again

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Reply With Quote
Thanked by:
  #226 (permalink)
 Belltalks 
Chicago US
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL GC
Posts: 25 since May 2016
Thanks Given: 4
Thanks Received: 15


DavidHP View Post
The FootPrintv2 has been updated with Bardata
Update it and install again

Thanks, David.

Reply With Quote
  #227 (permalink)
 RobWa 
Seattle, WA
 
Platform: NinjaTrader8
Trading: Futures
Frequency: Daily
Duration: Minutes
Posts: 12 since May 2024
Thanks Given: 6
Thanks Received: 1


mk77ch View Post
Hello,

i've uploaded a version with slightly larger text.
Just re-download and install the indicator again.

All the best,
Mike

Hello, turns out this is the reason I joined Nexusfi. I found this indicator in the Ninjatrader ecosystem. I really like it. So much so I paid for Elite status here to ask you So, I removed the version I had found and downloaded your latest build here. The text is still too small for me to read. I see others posting pics or making videos of it though and it looks great. Am I doing something wrong? I can stretch the vertical but lose most of the candles on the screen.

Attached Thumbnails
Click image for larger version

Name:	Capture.JPG
Views:	36
Size:	58.9 KB
ID:	339579   Click image for larger version

Name:	Capture2.JPG
Views:	39
Size:	88.2 KB
ID:	339580  
Reply With Quote
  #228 (permalink)
 
mk77ch's Avatar
 mk77ch 
Switzerland
 
Experience: Advanced
Platform: NinjaTrader
Broker: Dorman
Trading: Currency Futures, ES
Posts: 141 since Oct 2010
Thanks Given: 29
Thanks Received: 364

Hello,

you can scale the chart vertically and horizontally.
The font size is automatically adjusted to the available cell space.

On the first screen it looks like you only scaled the chart horizontally. So there is plenty of room for the text horizontal but gets capped because of the height.

All the best,
Mike


RobWa View Post
Hello, turns out this is the reason I joined Nexusfi. I found this indicator in the Ninjatrader ecosystem. I really like it. So much so I paid for Elite status here to ask you So, I removed the version I had found and downloaded your latest build here. The text is still too small for me to read. I see others posting pics or making videos of it though and it looks great. Am I doing something wrong? I can stretch the vertical but lose most of the candles on the screen.


I never lose. I either win or learn.
Nelson Mandela

The Potion | Konje | Pride | Stick Season | Breathe
Started this thread Reply With Quote
Thanked by:
  #229 (permalink)
 RobWa 
Seattle, WA
 
Platform: NinjaTrader8
Trading: Futures
Frequency: Daily
Duration: Minutes
Posts: 12 since May 2024
Thanks Given: 6
Thanks Received: 1


mk77ch View Post
Hello,

you can scale the chart vertically and horizontally.
The font size is automatically adjusted to the available cell space.

On the first screen it looks like you only scaled the chart horizontally. So there is plenty of room for the text horizontal but gets capped because of the height.

All the best,
Mike

yes, in the first I only scaled horizontal. was just trying to show the difference. even in the second the text is too small for me to actually use, I have to scale the vertical up even more to actually read and by then I can only fit 4 or 4 range candles on the screen.

Reply With Quote
  #230 (permalink)
 RobWa 
Seattle, WA
 
Platform: NinjaTrader8
Trading: Futures
Frequency: Daily
Duration: Minutes
Posts: 12 since May 2024
Thanks Given: 6
Thanks Received: 1


Would love a quick recap of this snip, just curious if I understand the layout correctly. I've turned off a couple things like Midas, and per bar delta. I'm just trying to wrap my head around the concepts.


Capture3

Reply With Quote




Last Updated on June 16, 2024


© 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