NexusFi: Find Your Edge


Home Menu

 





Share Data between two Charts


Discussion in NinjaTrader

Updated
    1. trending_up 4,700 views
    2. thumb_up 14 thanks given
    3. group 3 followers
    1. forum 20 posts
    2. attach_file 4 attachments




 
Search this Thread

Share Data between two Charts

  #1 (permalink)
user10
Dresden + Germany
 
Posts: 21 since Feb 2018
Thanks Given: 11
Thanks Received: 5

Hello Community,

I want to exchange data between two charts.
With Streamreader I write data from Chart Write to an SSD and read the data in Chart Read with streamwriter.
Because the process is quite slow, I want to speed up the process.

For this I use a static variable, which real-time transmits the data correctly.
double readtestvalue = Write.writetestvalue ==> works

My problem is the historical representation of the data
The assignment ReadArray [0] = Write.WriteArray [0];
is accepted by the compiler but leads to a runtime error (missing object instance)

Write [] readArray = new Write [];
Does not solve the problem ....

How would you solve the problem?

1. Is it correct to transfer the data with an array?
2. My WriteArray is public static ==> As far as I know, using static in Read does not require a constructor
Does the runtime error result for other reasons?
3. I tried to transfer the data via a property in Write.
The public property in Write is not visible in Read ==> how do I access from Chart1 a property in Chart2?
Is the property in Ninjatrader 8 read-only?
4. Are there examples in the community for my concern?

Many thanks for the support!

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
MC PL editor upgrade
MultiCharts
REcommedations for programming help
Sierra Chart
About a successful futures trader who didnt know anythin …
Psychology and Money Management
How to apply profiles
Traders Hideout
 
  #3 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426



user10 View Post
Write [] readArray = new Write [];
Does not solve the problem ....

You still need to allocate actual space for the array, e.g.

 
Code
public static double[] values = new double[8];

Remember that you are responsible for any synchronisation (unlike the native NT DataSeries), and also that any recompile needs a reload of all charts that are using global data, otherwise the connections are lost.

Cheers

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #4 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426


user10 View Post
The public property in Write is not visible in Read ==> how do I access from Chart1 a property in Chart2?
Is the property in Ninjatrader 8 read-only?

You need to use the class name as part of the reference, e.g.

 
Code
public static class myData
{
    public static int fred;
}

...

myData.fred = 3;

The values are not read-only, but connections do get lost when compiling, all charts need to be F5'd or re-opened. Global data does work fine under NT and there are plenty of code examples on the forum, just use the search facility, it does however need care, as do most good things.

Cheers

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #5 (permalink)
user10
Dresden + Germany
 
Posts: 21 since Feb 2018
Thanks Given: 11
Thanks Received: 5

Thanks for the hint.
I can now access the Write.WriteArray.

However, the data should be presented historically.
This works neither with (State = = State.Historical) nor with OnBarUpdate.

for (int i = 0; i <ReadArray.Length; i ++)
ReadArray [0] = Write.WriteArray [0];
or
ReadArray [i] = Write.WriteArray [i];
only shows the current data.

How can I present the historical data?
Many Thanks!

Reply With Quote
Thanked by:
  #6 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426


user10 View Post
Thanks for the hint.
I can now access the Write.WriteArray.

However, the data should be presented historically.
This works neither with (State = = State.Historical) nor with OnBarUpdate.

for (int i = 0; i <ReadArray.Length; i ++)
ReadArray [0] = Write.WriteArray [0];
or
ReadArray [i] = Write.WriteArray [i];
only shows the current data.

How can I present the historical data?
Many Thanks!

Really depends on what you are trying to do, basically you will have to make use of bar indexing in the indicator OnBarUpdate code using the 'CurrentBar' or BarsSinceSession variables (NT7, I can't be sure about NT8 equivalents as I haven't written code for that for a year or so).

Note that NT uses inverse bar indexing so Close[0] is the current bar, Close[2] is 2 bars earlier.

e.g. in OnBarUpdate

 
Code
Write.WriteArray[CurrentBar] = Close[0]; // assumes your arrays are big enough, else you need wrap around code
Data will only get written to your array on each OnBarUpdate call when the writer chart is first loaded or F5'd (for Historical) and will then be updated on each OnBarUpdate call when live. So your reader chart will only see valid data if the writer chart was loaded first, and again it will only see anything at all if they are both refreshed in that order after a recompile. Once stable and both are running it will update fine but you have no guarantee on individual tick update order between the charts, that's not usually a big deal though. Note that NT8 charts may be running on different threads, not the case in NT7.

I always use simple Print calls to see the ins and outs, but beware opening Output Windows in 2 different workspaces under NT8 as this always uses to crash it (maybe fixed now I haven't tried for a long time.)

Cheers

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
  #7 (permalink)
user10
Dresden + Germany
 
Posts: 21 since Feb 2018
Thanks Given: 11
Thanks Received: 5

Thank you for that information; unfortunately I do not get correct results.

In Chart Write, I set calculations that I want to use in Chart Read.
For the sake of simplicity we assume that in Chart Write with 1000 bars I count a counter from 1 to 1000.
In Chart Write WriteArray [0] correctly displays these numbers for each bar from 1 - 1000.

I would now like to use the result of this calculation in Chart Read (1000 bars).
I assign ReadArray = Write.WriteArray and get the value 1000.
(ReadArray [0] = Write.WriteArray [0] returns the value 0.)

The chart Read should represent all numbers from 1 - 1000 from bar 1 to bar 1000.
I tried to read the ReadArray or the Write.WriteArray with the methods
for (int i = 0; i <(..) Array.Length; i ++) {...}
foreach {...}
while {...}

But I always only get the last value 1000 in Chart Read.

If I print in the chart Read Write.WriteArray [x] at the position x (x = 100, 500, ...), I always get 0;
Is it possible that the data will be lost? But the last value 1000 is present!

The problem should be in the historical assignment.
My WriteArray is one-dimensional and contains no further indexing.
Because the number of bars in both charts is identical, I tried to synchronize the arrays with a counter in the chart read.
Unfortunately, without success: Chart Read tries to load the data and gets no result ....
I am thankful for every hint!

Reply With Quote
  #8 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426


user10 View Post
I am thankful for every hint!

You will need to attach a zip or post or PM the .cs for me to see much further in I think.

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
  #9 (permalink)
user10
Dresden + Germany
 
Posts: 21 since Feb 2018
Thanks Given: 11
Thanks Received: 5

Thank you for your support.
Enclosed a zip file with the example code ..

Attached Files
Elite Membership required to download: WriteRead.zip
Reply With Quote
Thanked by:
  #10 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426



user10 View Post
Thank you for your support.
Enclosed a zip file with the example code ..

[deleted here where I wrote about using State.Configure rather than State.DataLoaded but shouldn't matter and I think is a red-herring in any case]

Any global sharing I have done has used static classes outside of the Ninja namespaces, as I'm not sure whether it honours public static declarations inside its own non-static indicator/straegy instances as you are trying to do.

They can still be in the same .cs file, but before the Ninja strategy/indicator, e.g.

public static class myData
{
public static int[] array = new int[1000];
}

The shared area is pre-allocated at compile time so you can delete the OnStateChange allocation code and it is referenced in the same way i.e. test = myData.array[0];

I think this is the better way, let me know.

Cheers

Travel Well
Visit my NexusFi Trade Journal Reply With Quote




Last Updated on July 3, 2018


© 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