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 (1) Thread Tools Display Modes Language
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 01-27-2007, 01:00 PM
Soultrader's Avatar
Soultrader Soultrader is offline
Founder of TL!

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 2,856
Thanks: 56
Thanked 278 Times in 106 Posts
Blog Entries: 9
Send a message via MSN to Soultrader Send a message via Skype™ to Soultrader
Collaboration to design a new indicator?

I am interested in building an indicator based off a time of sales and tick chart. The basic concept is this: I want an easier way to read the tape and to watch for supply vs demand.

What I want is an indicator that plots a histogram of the difference between the number of contracts at the ask vs the number of contracts at the bid. I want this difference taken from a tick chart of choice.

For example: If the tick chart settings were set to 233 tick chart, the histogram will plot the difference between the number of contracts at the ask minus the number of contracts at the bid off one 233 tick bar.

The parameters for the tick chart settings can be changed to whatever.

If anyone can help me with this it would be appreciated. I have no knowledge of EL or coding. Thanks

__________________
James Lee
Email: JamesLee@traderslaborator y.com
Skype: james.lee03
TradersLaboratory.com

Reply With Quote
  #2 (permalink)  
Old 01-27-2007, 06:40 PM
TinGull's Avatar
TinGull TinGull is offline
Moderator

Trader Specs
 
Join Date: Oct 2006
Location: Stockton Springs, Maine
Posts: 1,469
Thanks: 0
Thanked 13 Times in 7 Posts
Send a message via AIM to TinGull
Re: Collaboration to design a new indicator?

Sounds like I know what you've got brewing..... If I knew easy language I'd be all about helping.

Reply With Quote
  #3 (permalink)  
Old 01-29-2007, 03:33 PM
Soultrader's Avatar
Soultrader Soultrader is offline
Founder of TL!

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 2,856
Thanks: 56
Thanked 278 Times in 106 Posts
Blog Entries: 9
Send a message via MSN to Soultrader Send a message via Skype™ to Soultrader
Re: Collaboration to design a new indicator?

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
Attached Images
File Type: jpg ERDeltaCandle.jpg (161.7 KB, 110 views)

__________________
James Lee
Email: JamesLee@traderslaborator y.com
Skype: james.lee03
TradersLaboratory.com

Reply With Quote
  #4 (permalink)  
Old 01-29-2007, 07:06 PM
walterw's Avatar
walterw walterw is offline
Premium Trader

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,072
Thanks: 0
Thanked 12 Times in 11 Posts
Re: Collaboration to design a new indicator?

Soul I know it is possible and I even have one, i will post it when I find it, but it will work only on real time data, it doesnt look on historical data... on the other side I believe it calculates on up/dn ticks and not real bid ask volume on TS... Linnsoft its about the only soft that has reliable performance on this type of data until now... and has the abilty to recalculate historical data and plot it... maybe the most near competitor its topgunsoftware thought their aproach is quite diferent... cheers Walter.

Reply With Quote
  #5 (permalink)  
Old 01-29-2007, 07:11 PM
Soultrader's Avatar
Soultrader Soultrader is offline
Founder of TL!

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 2,856
Thanks: 56
Thanked 278 Times in 106 Posts
Blog Entries: 9
Send a message via MSN to Soultrader Send a message via Skype™ to Soultrader
Re: Collaboration to design a new indicator?

Thanks walterw. Please let me know when you find it.

__________________
James Lee
Email: JamesLee@traderslaborator y.com
Skype: james.lee03
TradersLaboratory.com

Reply With Quote
  #6 (permalink)  
Old 01-30-2007, 07:31 AM
insideday insideday is offline
Registered Trader

 
Join Date: Dec 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Hi, you could try it realtime with

inputs: UpColor(green), DownColor(red); variables: MyVol(0), Color(yellow), intrabarpersist MyCurrentBar(0), intrabarpersist VolumeAtBid(0), intrabarpersist VolumeAtAsk(0), intrabarpersist BAVolDiff(0), intrabarpersist VolTmp(0); if LastBarOnChart then begin MyVol = Iff(BarType < 2, Ticks, Volume); if CurrentBar > MyCurrentBar then begin VolumeAtBid = 0; VolumeAtAsk = 0; BAVolDiff= 0; VolTmp = 0; MyCurrentBar = CurrentBar; end; if InsideBid < InsideAsk then begin if Close <= InsideBid then VolumeAtBid = VolumeAtBid + MyVol - VolTmp else if Close >= InsideAsk then VolumeAtAsk = VolumeAtAsk + MyVol - VolTmp ; end; if VolumeAtBid > 0 and VolumeAtAsk > 0 then BAVolDiff= VolumeAtAsk-VolumeAtBid ; VolTmp = MyVol ; end ; if BAVolDiff<= 0 then color = DownColor else color = UpColor; plot1(BAVolDiff, "BAVolDiff", color); Plot2( 0, "ZeroLine" ) ;
Make sure that you use Trade Volume on Format Symbol.

Regards

Reply With Quote
  #7 (permalink)  
Old 01-30-2007, 10:07 AM
Soultrader's Avatar
Soultrader Soultrader is offline
Founder of TL!

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 2,856
Thanks: 56
Thanked 278 Times in 106 Posts
Blog Entries: 9
Send a message via MSN to Soultrader Send a message via Skype™ to Soultrader
Re: Collaboration to design a new indicator?

Thank you insideday. This is going to sound retraded but how do I create a new EL file? Im assuming I need to cut and past the above coding into a new .eld file? Thanks

__________________
James Lee
Email: JamesLee@traderslaborator y.com
Skype: james.lee03
TradersLaboratory.com

Reply With Quote
  #8 (permalink)  
Old 01-30-2007, 11:10 AM
insideday insideday is offline
Registered Trader

 
Join Date: Dec 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Yes, go to File->New->Window->Easy Language->Indicator and paste the above code. Then verify it with F3.

Reply With Quote
  #9 (permalink)  
Old 01-30-2007, 11:36 AM
Soultrader's Avatar
Soultrader Soultrader is offline
Founder of TL!

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 2,856
Thanks: 56
Thanked 278 Times in 106 Posts
Blog Entries: 9
Send a message via MSN to Soultrader Send a message via Skype™ to Soultrader
Re: Collaboration to design a new indicator?

WOW! Works great insideday. Thank you very much for this. I almost had a EL specialist get this done for me. Do you mind if I go ahead and post this in the custom indicator forum? Thank you

__________________
James Lee
Email: JamesLee@traderslaborator y.com
Skype: james.lee03
TradersLaboratory.com

Reply With Quote
  #10 (permalink)  
Old 01-30-2007, 01:23 PM
nicknextmove nicknextmove is offline
Premium Trader

 
Join Date: Dec 2006
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Collaboration to design a new indicator?

Thanks insideday. Learnt a lot from your code.

Attached is the ELD for people who don't want to go the copy/paste/verify mode.
Attached Files
File Type: eld VOLUMEBKDWNBYINSIDEDAY.ELD (5.3 KB, 74 views)

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

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
Is the RSI indicator any good? Lisa Technical Analysis 14 04-27-2008 12:41 PM
BB Squeeze Replica For Tradestation Soultrader Trading Indicators 27 01-23-2008 11:17 AM
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:16 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