| E-mini Futures Trading Laboratory S&P, Dow, Nasdaq, Russell, Dax and more - index futures |
![]() | | Tweet | |
| | #1 | ||
![]() | Easy Language - Help with Simple System Thanks. | ||
| |
|
| | #2 | ||
![]() | Re: Easy Language - Help with Simple System Cheers Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #3 | ||
![]() | Re: Easy Language - Help with Simple System gatrader | ||
| |
|
| | #4 | ||
![]() | Re: Easy Language - Help with Simple System What I'd do is open up a couple of TS studies and see how they work. Start with a simple moving average or whatever takes your fancy. You might have to look a couple of things up but you'll be knocking out simple studies in no time. Cheers. | ||
| |
|
| | #5 | ||
![]() | Re: Easy Language - Help with Simple System I know you have coded up some indicators in the past and posted them freely on this forum and for that I thank you for your generosity. I do have a simple EL question for you. How would one store the opening 60 min high and low as a variable to be used for other calculations? Thanks in advance. Quote:
| ||
| |
|
| | #6 | ||
![]() | Re: Easy Language - Help with Simple System This is just a way of identifying the first bar of the session. | ||
| |
|
| | #7 | ||
![]() | Re: Easy Language - Help with Simple System vars: aa(0), bb(0); if time=1030 then aa=high; if time=1030 then bb=low; ---- then you can reference aa or bb in further code. or for 30-min chart: vars: aa(0), bb(0); if time=1030 then aa=highest(h,2); if time=1030 then bb=lowest(l,2); etc... ----- depending on further code, sometimes may have to write as: if time=1030 then aa=high else aa=0; | ||
| |
|
| | #8 | ||
![]() | Re: Easy Language - Help with Simple System Quote:
Yes, it would be as waveslider mentioned on his post if your using an hourly chart, or alternatively if your using a smaller timeframe chart, then putting an "endtime" as input would be easy enough for you. Here's an example of the code you would need. Inputs: endtime (1030); Vars: HH(0),LL(0); if date<>date[1] then begin HH = high; LL = Low; end; if time <= endtime then begin if high > HH then HH = High; if Low < LL then LL = Low; end; Hope this helps Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Chimp`s Universal Stop System | walterw | Forex Trading Laboratory | 11 | 11-07-2007 02:49 PM |
| sharing your system | Don4 | Brokers and Data Feeds | 10 | 03-06-2007 11:15 AM |
| Building a Computer System | wsam29 | General Discussion | 5 | 03-04-2007 07:28 PM |
| Mechanical System developers? | MseTrap | Brokers and Data Feeds | 6 | 01-24-2007 07:30 PM |