| Technical Analysis The technical discussion forum for traders. |
![]() | | Tweet | |
| | #1 | ||
![]() | Accessing Market Indices in Easy Language 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 | ||
| |
|
| | #2 | ||
![]() | Re: Accessing Market Indices in Easy Language Quote:
Code: {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 | ||
| |
|
| | #3 | ||
![]() | Re: Accessing Market Indices in Easy Language Don't now why. I appreciate your answer it does help. Looking forward Thanks, Amit | ||
| |
|
| | #4 | ||
![]() | Re: Accessing Market Indices in Easy Language Quote:
(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 | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Easy Language - Help with Simple System | gatrader | E-mini Futures Trading Laboratory | 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 |