Collaboration to design a new indicator? - 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 (1) Thread Tools Display Modes
  #11 (permalink)  
Old 01-30-2007, 09:13 PM
Robert2617's Avatar
Robert2617 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Athens, GA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Here is a radarscreen one called "Tug of war". It shows who is in control, buyers or sellers. It does multi time intervals as well.

[LegacyColorValue = true]; {_SMAA_TugOfWar } {*************************************** Written by: Hondo Description: For Intra Day Use Only ****************************************} {Modifying Programmer: Avery T. Horton, Jr. aka TheRumpledOne, gifts and donation accepted, PO Box 43575, Tucson, AZ 85733 } { © Copyright 2006 Avery T. Horton, Jr.} Inputs: iDecimals(2); VARIABLES: Last_Close ( 0 ) ; variables: xTug(0), xPeriods(60), xInterval(0), sFirstPass(true), xMRO( 0 ), xIndMin( 0 ), xIndAvg( 0 ), xInd(0), tInd(""), FG1(white), BG1(black), fg2(white), bg2(black), fg3(white), bg3(black), fg4(white), bg4(black), vdummy(""); {commentary variables} variables: xcomm(0), oComm1( "" ), oComm2( "" ), oComm3( "" ), oComm4( "" ), oComm5( "" ), oComm6( "" ), oComm7( "" ), oComm8( "" ), oComm9( "" ), oComm10( "" ); {first time through} if sFirstPass then begin sFirstPass = false; {bar test} If bartype = 4 then xInterval = 94 else If bartype = 3 then xInterval = 93 else If bartype = 2 then xInterval = 92 else If bartype = 1 then begin xInterval = BarInterval; end; { If bartype = 1 } end; {if sFirstPass} { INITIALIZE } tInd = ""; FG1 = WHITE; BG1 = BLACK; fg2 = WHITE; bg2 = BLACK; fg3 = WHITE; bg3 = BLACK; fg4 = WHITE; bg4 = BLACK; { PROCESSING } { calculations } if bartype <> 1 then tInd = "error - intraday interval only" ; if Last_Close <> Close or BarStatus(1) = 2 then begin // Calcs, Plots, Buy/Sells go here {Tug of War} Value1 =((HighD(1)-LowD(1))+(HighD(2)-LowD(2))+(HighD(3)-LowD(3))+(HighD(4)-LowD(4))+(HighD(5)-LowD(5)))/5; Value2 =(HighD(0) - Value1); Value3 =(LowD(0) + Value1); value5 = Value3 - Value2 ; if value5 <> 0 then xTug = ( Close - Value2 ) / value5 else xTug = xTug[1] ; end ; // update only on price change of last tick of bar Last_Close = Close ; { Alert criteria } xInd = xTug ; If xInd > xInd[1] then begin Fg1 = green; Bg1 = BLACK; end else If xInd < xInd[1] then begin Fg1 = red; Bg1 = BLACK; end else begin Fg1 = white; Bg1 = BLACK; end; If xInd > .50 then begin tInd = "Buyers Winning" ; Fg2 = green; Bg2 = BLACK; end else If xInd < .50 then begin tInd = "Sellers Winning" ; Fg2 = red; Bg2 = BLACK; end else begin tInd = "Draw" ; Fg2 = white; Bg2 = BLACK; end; Plot1( xTug , "Tug of War", fg1 ) ; SetPlotBGColor( 1, bg1); Plot2(tInd, "Message", fg2 ) ; SetPlotBGColor( 2, bg2); { Plot3( oSlowK, "oSlowK", fg3 ) ; SetPlotBGColor( 3, bg3); Plot4( oSlowD, "oSlowD", fg4 ) ; SetPlotBGColor( 4, bg4); } xComm = _fCommentary(oComm1, oComm2, oComm3, oComm4, oComm5, oComm6, oComm7, oComm8, oComm9, oComm10); CommentaryCl(oComm1 ); CommentaryCl(oComm2 ); CommentaryCl(oComm3 ); CommentaryCl(oComm4 ); CommentaryCl(oComm5 ); CommentaryCl(oComm6 ); CommentaryCl(oComm7 ); CommentaryCl(oComm8 ); CommentaryCl(oComm9 ); CommentaryCl(oComm10 ); CommentaryCl( " Tug Of War ", NumToStr(xInd, iDecimals) );
Attached Images
File Type: gif tug.gif (12.9 KB, 61 views)


Last edited by Robert2617; 01-30-2007 at 09:19 PM.
Reply With Quote
  #12 (permalink)  
Old 01-31-2007, 12:28 AM
Robert2617's Avatar
Robert2617 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Athens, GA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Here is the file to make it easier.
Attached Files
File Type: eld TUGOFWAR.ELD (8.4 KB, 33 views)

Reply With Quote
  #13 (permalink)  
Old 01-31-2007, 03:23 AM
wsam29 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Toronto, Ontario, Canada
Posts: 227
Thanks: 1
Thanked 5 Times in 4 Posts
Send a message via MSN to wsam29
Re: Collaboration to design a new indicator?

Quote:
View Post
Ok heres the indicator... thanks for the chart Tin. Apparently its called the volume breakdown indicator. Does anyone know if this exits for TS? Thanks

I have something like that, I'll post a screen shot of it in action and you tell me if that is what you are looking for.

it even plots an average of volume but you can take it out if yuo don't like it.

Reply With Quote
  #14 (permalink)  
Old 01-31-2007, 03:26 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: Collaboration to design a new indicator?

Sure I would like to take a look. Insideday made an indicator posted on page 1 of this thread which is pretty much what I wanted. I'll post a snapshot of that tomorrow after the close since it only works in real time. Thanks

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

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #15 (permalink)  
Old 01-31-2007, 03:40 AM
wsam29 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Toronto, Ontario, Canada
Posts: 227
Thanks: 1
Thanked 5 Times in 4 Posts
Send a message via MSN to wsam29
Re: Collaboration to design a new indicator?

Quote:
View Post
Sure I would like to take a look. Insideday made an indicator posted on page 1 of this thread which is pretty much what I wanted. I'll post a snapshot of that tomorrow after the close since it only works in real time. Thanks

Are you saying there is an Easy Language programmer here???

Reply With Quote
  #16 (permalink)  
Old 01-31-2007, 03:47 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: Collaboration to design a new indicator?

I think there are several. Ant for example made the Market Profile Indicator for Tradestation. Insideday just made this Bid/Ask indicator and a few others like Nasdaq is good with EL also.

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

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #17 (permalink)  
Old 01-31-2007, 04:05 AM
wsam29 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Toronto, Ontario, Canada
Posts: 227
Thanks: 1
Thanked 5 Times in 4 Posts
Send a message via MSN to wsam29
Re: Collaboration to design a new indicator?

interesting so if I had some idea of an indicator which I needed some help with or possibly even have them type it up?

ever think of an auto pivot point indicator?

just enter the high, low, close and voila, PP, S1, R1, etc. plotted on the price chart.

The Auto-Pivots Indicator


Last edited by wsam29; 01-31-2007 at 04:10 AM.
Reply With Quote
  #18 (permalink)  
Old 01-31-2007, 04:10 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: Collaboration to design a new indicator?

Yea.. Ant already made that for me. Check "soultrader's pivots" in the indicator forum.

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

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #19 (permalink)  
Old 01-31-2007, 04:13 AM
wsam29 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Toronto, Ontario, Canada
Posts: 227
Thanks: 1
Thanked 5 Times in 4 Posts
Send a message via MSN to wsam29
Re: Collaboration to design a new indicator?

I must be blind, where is this indicator forum?

nevermind I found it.


Last edited by wsam29; 01-31-2007 at 04:16 AM.
Reply With Quote
  #20 (permalink)  
Old 01-31-2007, 08:26 AM
Robert2617's Avatar
Robert2617 has no status.

Trader Specs
 
Join Date: Jan 2007
Location: Athens, GA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Here is TRO's version (automatic floor pivots) with a radar trade indicator. The radar indicator should be set on 15 min time interval. It's a football analogy to trading. On the radar screen, Trade tells you when the alert hits, Possession is who has the ball (who is in control), TOP is the time of possession and Ball On is where the price is on a 100 yard field. Both are included in the eld.
Attached Images
File Type: gif gridiron.gif (49.0 KB, 54 views)
File Type: gif gridiron1.gif (43.9 KB, 36 views)
File Type: gif gridirontrade.gif (16.8 KB, 36 views)
Attached Files
File Type: eld GRIDIRONANDTRADEINDICATOR.ELD (38.7 KB, 28 views)


Last edited by Robert2617; 01-31-2007 at 01:45 PM.
Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f56/collaboration-to-design-a-new-indicator-1099.html
Posted By For Type Date
Coding Forum [Archive] - Traders Laboratory - Active Traders Forum This thread Refback 10-27-2007 04:45 PM

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
BB Squeeze Replica For Tradestation Soultrader Trading Indicators 33 08-28-2008 08:47 PM
Is the RSI indicator any good? Lisa Technical Analysis 14 04-27-2008 12:41 PM
Free indicator for eSignal? keymoo Market Profile® 2 01-23-2007 08:45 AM
TraderInteriews.com Collaboration Soultrader Announcements 3 12-23-2006 11:22 AM
Ant: Is there any way to improve this indicator? nasdaq5048 Market Profile® 3 12-22-2006 11:45 AM


All times are GMT -4. The time now is 07:04 AM.

 

 
 


1 2