Go Back   Traders Laboratory > Trading Laboratory > Technical Analysis

Technical Analysis The technical discussion forum for traders. Moderated by mister ed.

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

 
LinkBack (1) Thread Tools Search this Thread Display Modes Language
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 12-24-2007, 02:37 PM
goldspot goldspot is offline
Registered Trader

 
Join Date: Dec 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Accessing Market Indices in Easy Language

My question is let's say I am short on "MSFT" and ndaq increases very fast. I want to cover my position
if ndaq is > X value.

In running strategy for MSFT, how can you access quote for ndaq or tick or spy etc inside your strategy.
I tried but it said you can't call

Thanks,
Arun

Reply With Quote
  #2 (permalink)  
Old 12-25-2007, 04:27 PM
thrunner thrunner is offline
Registered Trader

 
Join Date: Feb 2007
Posts: 154
Thanks: 50
Thanked 34 Times in 17 Posts
Re: Accessing Market Indices in Easy Language

Quote:
View Post
I tried but it said you can't call
Arun
Welcome to the fourm. Your question kind of got cut off in mid sentence. It would be helpful to know the specifics. However, this is easily doable given some limitations and is well documented in the TS code forum. Here is a sample code with MSFT as data1 and $NDX.X as data2 (just insert into the same chart), using a well known indicator by LBR (3/10 oscillator) to generate the signals. It is true that you can only trade on data1, you can't have tick or vol in a multi-symbol chart and that you can't do intrabar order generation on an event in data2 (unless you try global variables):
{The LBR 3/10 oscillator is the difference between a 3 and 10 period simple moving average. Add another 16-period simple moving average of the 3/10 on top of it. } {Sample two data strategy, **************do not trade as is************ } inputs: Price(Close), Price2(Close data2), Avg1(3), Avg2(10), Avg3(16), Avg21(3), Avg22(10), Avg23(16); vars: HH(0),LL(0); if Currentbar > 30 then begin Value1 = Average(Price,Avg1)-Average(Price,Avg2); Value21 = Average(Price2,Avg21)-Average(Price2,Avg22); Value2 = Average(Value1,Avg3); Value22 = Average(Value21,Avg23); If Value21 crosses over Value22 then Buy ( "B1" ) next bar at market ; If Value1 crosses under Value2 then Sellshort ( "SS1" ) next bar at market; end;


Please do not trade this as is, it is not profitable. Blue Ray has kindly attached a copy of the LBR 3/10 osc here on TL: http://www.traderslaboratory.com/for...html#post25515
Attached Images
File Type: png Sample 2 data LBR strategy 2007-12-25_153114.png (32.3 KB, 77 views)

Reply With Quote
  #3 (permalink)  
Old 12-25-2007, 09:42 PM
goldspot goldspot is offline
Registered Trader

 
Join Date: Dec 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Accessing Market Indices in Easy Language

I tried adding symbols tick and trin to chart but when i add like $dji or $ndx.x it says "you may not mix symbols with different delays in the same window"

Don't now why. I appreciate your answer it does help. Looking forward

Thanks,
Amit

Reply With Quote
  #4 (permalink)  
Old 12-26-2007, 11:01 PM
thrunner thrunner is offline
Registered Trader

 
Join Date: Feb 2007
Posts: 154
Thanks: 50
Thanked 34 Times in 17 Posts
Re: Accessing Market Indices in Easy Language

Quote:
View Post
"you may not mix symbols with different delays in the same window"Don't now why.
Sometimes that is TS's way of asking your for more money (you'll need to subscribe to the proper exchange data in order to mix data; TS will generally not allow delayed data to be mixed with live). It is possible to use ADE and lot more work to get around this limitation. see for example: https://www.tradestation.com/Discuss...Topic_ID=33398

Reply With Quote
Reply

LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f34/accessing-market-indices-in-easy-language-3117.html
Posted By For Type Date
Traders Laboratory - forumdisplay This thread Refback 12-24-2007 03:21 PM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Easy Language - Help with Simple System gatrader E-mini Futures 8 12-17-2007 06:40 PM
DAX and EuroDJ50 Market Internals and Indices momentom Market Analysis 8 10-03-2007 02:35 PM
Spreadsheet of Market Indices Soultrader Technical Analysis 2 06-06-2007 01:58 AM
POC and indices that "lead" it TinGull Market ProfileŽ 3 12-18-2006 09:02 AM


All times are GMT -4. The time now is 12:01 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