Go Back   Traders Laboratory > Trading Resources > Trading Indicators > Coding Forum

Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Bookmarks
del.icio.us StumbleUpon Google Digg Facebook Furl Reddit Netscape

 
LinkBack Thread Tools Display Modes Language
  #41 (permalink)  
Old 04-23-2008, 05:04 AM
Blu-Ray's Avatar
Blu-Ray Blu-Ray is offline
Premium Trader

Trader Specs
 
Join Date: Nov 2006
Location: England
Posts: 355
Thanks: 60
Thanked 19 Times in 14 Posts
Re: TTM/DDF Value Chart

Quote:
View Post
Hi blu-ray, what is Da? ( line 27)is this Ts word?

thanks

Hi

Sorry it's just the way the code has pasted ( as there's no space after the comma ) and it does this sometimes. It's " Date" .

Cheers

Blu-Ray

__________________
Remember - Take the path of least resistance.
Reply With Quote
  #42 (permalink)  
Old 04-24-2008, 07:02 AM
ches ches is offline
Registered Trader

 
Join Date: Mar 2007
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
Re: TTM/DDF Value Chart

Quote:
View Post
Here's the DDF and Value charts right from TTM. Enjoy.Value Charts calculations were actually freely given in Helwegs book and can be recreated in any programing language. I actually put them in Ninja as well just from the calc in the book.
JJ,

I noticed you said you had put the Value Chart into Ninja. Would you be willing to post this please ?

If not, I will attempt it myself but hate reinventing wheels, especially if I make it square !

Thanks,
Eric

Reply With Quote
  #43 (permalink)  
Old 04-24-2008, 07:59 AM
jjthetrader's Avatar
jjthetrader jjthetrader is offline
VSA Trader

 
Join Date: Aug 2007
Location: Canada
Posts: 328
Thanks: 97
Thanked 56 Times in 34 Posts
Re: TTM/DDF Value Chart

Quote:
View Post
JJ,

I noticed you said you had put the Value Chart into Ninja. Would you be willing to post this please ?

If not, I will attempt it myself but hate reinventing wheels, especially if I make it square !

Thanks,
Eric
Ya, not point in reinventing the wheel. I'll post it once I'm on my trading computer.

__________________
Is fear preventing you from taking action? Acknowledge the fear, watch it, be fully present with it. Doing so cuts the link between the fear and your thinking.
Reply With Quote
The Following User Says Thank You to jjthetrader For This Useful Post:
ches (04-25-2008)
  #44 (permalink)  
Old 04-28-2008, 06:00 PM
jjthetrader's Avatar
jjthetrader jjthetrader is offline
VSA Trader

 
Join Date: Aug 2007
Location: Canada
Posts: 328
Thanks: 97
Thanked 56 Times in 34 Posts
TTM/DDF Value Chart for Ninja

Sorry it took so long. I actually forgot about this. Thanks Eric for reminding me.
Be sure to set the high and low to print as a 'dot' for them to look right. You'll see what I mean.
Enjoy!
JJ
Attached Files
File Type: zip jjvaluecharts.zip (1.7 KB, 17 views)

__________________
Is fear preventing you from taking action? Acknowledge the fear, watch it, be fully present with it. Doing so cuts the link between the fear and your thinking.
Reply With Quote
  #45 (permalink)  
Old 04-28-2008, 06:45 PM
thrunner thrunner is offline
Registered Trader

 
Join Date: Feb 2007
Posts: 154
Thanks: 49
Thanked 34 Times in 17 Posts
Re: TTM/DDF Value Chart

jj, thank you for the contribution, but this is probably the wrong indicator that was initially attached. There is no code for OnBarUpdate(), so it doesn't plot. Ninjatrader 6.5 doesn't support plotting of synthetic bars natively, so overriding the plot method is normally required for OHLC values :
[Description("Enter the description of your new custom indicator here")] [Gui.Design.DisplayName("jjvaluecharts")] public class valuecharts : Indicator { #region Variables // Wizard generated variables private int numbars = 5; // Default setting for Numbars // User defined variables (add any user defined variables below) #endregion /// <summary> /// This method is used to configure the indicator and is called once before any bar data is loaded. /// </summary> protected override void Initialize() { Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Dot, "Vhigh0")); Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Dot, "Vlow0")); Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Dot, "Vclose0")); Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Dot, "Vopen0")); CalculateOnBarClose = false; Overlay = false; PriceTypeSupported = true; } /// <summary> /// Called on each bar update event (incoming tick) /// </summary> protected override void OnBarUpdate() { // Use this method for calculating your indicator values. Assign a value to each // plot below by replacing 'Close[0]' with your own formula. }

Reply With Quote
  #46 (permalink)  
Old 04-29-2008, 06:15 AM
jjthetrader's Avatar
jjthetrader jjthetrader is offline
VSA Trader

 
Join Date: Aug 2007
Location: Canada
Posts: 328
Thanks: 97
Thanked 56 Times in 34 Posts
Re: TTM/DDF Value Chart

There is no code in the OnBarUpdate() in my attached indicator? If not then there must have been an export problem and I'll redo. Please confirm that it came through empty.
Also I worte this with 6.0 and stopped using Ninja after that so there's no 6.5 support. But all the calculations are there and if little tweaks are needed I'm sure you can do it.

__________________
Is fear preventing you from taking action? Acknowledge the fear, watch it, be fully present with it. Doing so cuts the link between the fear and your thinking.
Reply With Quote
  #47 (permalink)  
Old 04-29-2008, 06:30 AM
jjthetrader's Avatar
jjthetrader jjthetrader is offline
VSA Trader

 
Join Date: Aug 2007
Location: Canada
Posts: 328
Thanks: 97
Thanked 56 Times in 34 Posts
Re: TTM/DDF Value Chart

Sorry guys, when I was developing the indicator I forgot I named it "a" to keep it at the top of the list. Please let me know if this one works. If it does not then I have another version I named "b" which may be the 'final' but I think 'a' is. Sorry about the confusion. I'm pretty sure both the attached are the same but since the one named final had been in my export folder since I created the value charts I'm guessing I named it that because it was the final.
Enjoy, for real this time
Attached Files
File Type: zip VC.zip (3.4 KB, 24 views)
File Type: zip ValueChartFinal.zip (3.4 KB, 30 views)

__________________
Is fear preventing you from taking action? Acknowledge the fear, watch it, be fully present with it. Doing so cuts the link between the fear and your thinking.
Reply With Quote
  #48 (permalink)  
Old 04-29-2008, 09:50 PM
choicecap1 choicecap1 is offline
Registered Trader

 
Join Date: Feb 2008
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: TTM/DDF Value Chart

Hi guys,
I'm newbie here,so any help would be appreciated.I'm using a simulator from Open E cry and they have a custom indicator funtion that they said it could use TS EL files,does anybody have The value chart file for OEC willing to share it.
Thanks ,you guys have a grat forum here,keep it up

Reply With Quote
  #49 (permalink)  
Old 05-09-2008, 07:02 PM
forsearch forsearch is offline
Registered Trader

 
Join Date: Mar 2007
Posts: 125
Thanks: 17
Thanked 10 Times in 10 Posts
Re: TTM/DDF Value Chart

Webinar and Public Files for TTM DDF Value Chart

-fs

Reply With Quote
  #50 (permalink)  
Old 05-10-2008, 07:42 PM
choicecap1 choicecap1 is offline
Registered Trader

 
Join Date: Feb 2008
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: TTM/DDF Value Chart

Thanks for the link to the webinar,the problem is that OEC would not open an ELD from tradestation,I already had this.What I need is the code post for OEC to import it.I believe that this feature is fairly new to OEC and dont really know anything about coding.
I though somebody may have it coded already.
Thanks anyway,and good trading to everybody.

Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
YM Chart 7/27/07 TinGull The Candlestick Corner 2 07-30-2007 07:54 AM
a VSA chart a Day flatwallet Beginners Forum 27 05-05-2007 12:41 PM
Chart-ex.com torero Broker & Software Review 1 04-01-2007 08:35 PM
Chart Set-up wsam29 Market Analysis 10 03-05-2007 04:13 PM
MP Chart TinGull Market ProfileŽ 2 12-09-2006 12:03 AM


All times are GMT -4. The time now is 06:48 AM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58