Add-On for Tick Delta and Heikin Ashii Trend - Page 2 - Traders Laboratory

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

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

Reply
 
LinkBack (2) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #11 (permalink)  
Old 02-16-2007, 12:06 AM
mjp mjp is offline
mjp has no status.

 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add-On for Tick Delta and TTM Trend

Robert, back anytime. I use modified HA.

Reply With Quote
  #12 (permalink)  
Old 02-25-2007, 01:25 PM
tradinghumble has no status.

 
Join Date: Feb 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add-On for Tick Delta and TTM Trend

Just wondering if anyone has the eSignal code for the TTM Trend.

Thanks.

Reply With Quote
  #13 (permalink)  
Old 03-01-2007, 09:06 AM
Soultrader's Avatar
Soultrader is focusing on discipline.

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 3,142
Thanks: 138
Thanked 436 Times in 192 Posts
Send a message via Skype™ to Soultrader
Re: Add-On for Tick Delta and TTM Trend

Hi walter,

There seems to be a small bug in the TTM Div dots. Some of the blue TTM's show a green dot. I have attached a pic. Perhaps you can take a look? Thank you.
Attached Images
File Type: jpg ttmdivbug.jpg (98.6 KB, 86 views)

__________________
James Lee
TradersLaboratory.com
-----------------------------
Empowering traders with knowledge.

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #14 (permalink)  
Old 03-01-2007, 11:40 AM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,155
Thanks: 0
Thanked 39 Times in 29 Posts
Re: Add-On for Tick Delta and TTM Trend

yes Soul, thought the showme study is not set to update intrabar, it seems that if at some point during the bar the ttm had a diferent color, the showme takes that into acount and still plots that divergence... I will be working on it and will try to make a better version of it... cheers Walter.

Reply With Quote
  #15 (permalink)  
Old 03-01-2007, 06:32 PM
Soultrader's Avatar
Soultrader is focusing on discipline.

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 3,142
Thanks: 138
Thanked 436 Times in 192 Posts
Send a message via Skype™ to Soultrader
Re: Add-On for Tick Delta and TTM Trend

Thank you walter.

__________________
James Lee
TradersLaboratory.com
-----------------------------
Empowering traders with knowledge.

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #16 (permalink)  
Old 03-02-2007, 03:36 PM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,155
Thanks: 0
Thanked 39 Times in 29 Posts
Re: Add-On for Tick Delta and TTM Trend

Here is the new version of the Delta Ttm Divergence, this one works perfect... maybe you want to change this one on the indicators forum.... enjoy cheers Walter.
Attached Files
File Type: eld DELTA TTM DIV 2.ELD (4.0 KB, 103 views)

Reply With Quote
  #17 (permalink)  
Old 03-02-2007, 08:56 PM
Soultrader's Avatar
Soultrader is focusing on discipline.

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 3,142
Thanks: 138
Thanked 436 Times in 192 Posts
Send a message via Skype™ to Soultrader
Re: Add-On for Tick Delta and TTM Trend

Thank you Walter. I will give this a shot.

__________________
James Lee
TradersLaboratory.com
-----------------------------
Empowering traders with knowledge.

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #18 (permalink)  
Old 10-27-2007, 09:38 PM
3monkeys has no status.

 
Join Date: Jun 2007
Posts: 11
Thanks: 1
Thanked 6 Times in 2 Posts
Re: Add-On for Tick Delta and TTM Trend

In an act of "creative imitation" (or is it "imitative creationism" ), Hubert Senter of TTM will also release a proprietary TS indicator called ... TTM Delta Divergence in early November, 2007. This indicator is looking for:
Quote:
Current Low or New Low.
Histogram represent the difference between the volume traded at or above the ask and the volume traded at or below the bid.
Aggressive buyers at the Low.
Aggressive sellers at the High.
Real-time Only
Let it run a little first {in usage}
Here is a link to a swf video describing this indicator : http://www.divshare.com/download/2532690-421

Those wishing to write the code for this may read up on a real time bid ask price action indicator called TickMoneyFlow here: https://www.tradestation.com/Discuss...D=68788&Page=2 which may be another source of "creative imitation" for TTM.

{TickMoneyFlow indicator from TS forum. D=68788&Page=2 The CurrentAsk/CurrentBid function returns the current real-time inside Ask/Bid for the last bar on the chart, for use in a chart window. CurrentAsk/CurrentBid cannot reference historical Ask/Bid data, and returns the Close of the bar for all historical bars in a chart. Keep in mind that symbols that do not trade directly will report 0; (e.g. Market Index Symbols). } Inputs: Length1(500),Length2(100); Vars: IntrabarPersist TickFlag(0), IntrabarPersist OldPrice(0), IntrabarPersist TMF(0), IntrabarPersist NewTickVol(0), IntrabarPersist MyBarVolume(0); if BarNumber >= 1 then begin NewTickVol = Ticks - MyBarVolume; MyBarVolume = MyBarVolume + NewTickVol; if (C>=CurrentAsk) then begin TMF=TMF + (C * NewTickVol); TickFlag = 1; end; if (C<=CurrentBid) then begin TMF=TMF - (C * NewTickVol); TickFlag = 2; end; if (C<CurrentAsk and C>CurrentBid) and C>OldPrice then TMF=TMF + (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C<OldPrice then TMF=TMF - (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C=OldPrice and TickFlag = 1 then TMF=TMF + (C*NewTickVol); if (C<CurrentAsk and C>CurrentBid) and C=OldPrice and TickFlag = 2 then TMF=TMF - (C*NewTickVol); OldPrice = C; if BarStatus(1) = 2 then MyBarVolume = 0; end; Plot1(TMF, "TMF"); Plot2(LinearRegValue(Plot1,Length1,0)); Plot3(LinearRegValue(Plot1,Length2,0));

Reply With Quote
  #19 (permalink)  
Old 10-28-2007, 10:41 PM
mjp mjp is offline
mjp has no status.

 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add-On for Tick Delta and TTM Trend

Well done. Always count on TL to scoop the TTM folks. Nothing wrong with a business making a buck...but it always has been the American way to improve and improvise. More than one way to skin the cat.

Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f56/add-on-for-tick-delta-and-1150.html
Posted By For Type Date
TTMdivergenceIndicator_HS.swf - DivShare This thread Refback 01-31-2008 09:50 PM
Traders Laboratory - forumdisplay This thread Refback 10-29-2007 01:19 AM

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Heikin Ashi Trend Indicator Soultrader Trading Indicators 25 02-21-2008 06:24 PM
Add-on For Heikin Ashii and Volume Delta Soultrader Trading Indicators 22 12-11-2007 09:01 AM
[Sellers vs Buyers with Heikin Ashii and Volume Delta] Soultrader Trading Videos 5 11-26-2007 02:30 AM
Heiking Ashii & Volume Delta Add On Version 2 Soultrader Trading Indicators 5 09-03-2007 01:39 PM
Volume Gradient + Heikin Ashii Trend Indicator GCB Trading Indicators 27 04-07-2007 08:29 AM


All times are GMT -4. The time now is 02:41 PM.

 

 
 


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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76