Comments on: The One Thing Before Building A Intraday Trading System https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/?utm_source=rss&utm_medium=rss&utm_campaign=step-one-in-building-an-intraday-trading-system Helping you Master EasyLanguage Sun, 01 Feb 2026 10:53:17 +0000 hourly 1 https://wordpress.org/?v=7.0 By: Jeff Swanson https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/1007562 Wed, 29 Jun 2022 17:08:30 +0000 http://systemtradersuccess.com/?p=3658#comment-1007562 In reply to Elad.

Hi Elad. Yes, very good. That’s worth testing. Let us know if you find anything interesting.

]]>
By: Elad https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/1007542 Sun, 15 May 2022 14:43:08 +0000 http://systemtradersuccess.com/?p=3658#comment-1007542 Hi There,
Why not going “short” on sessions 8 and 17 ?
The results are “bad” in a good way 🙂

]]>
By: Kevin https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6875 Fri, 20 Jul 2018 20:49:29 +0000 http://systemtradersuccess.com/?p=3658#comment-6875 In reply to Jeff Swanson.

Don’t worry about the settings, I’ll figure it out. MC users are at a bit of a disadvantage, tho, since we can’t use the Tradestation workspace, which has all the detailed settings. It’s not impossible, just takes a while, but it’s a small price to pay for the ideas and strategies you provide. The other article would be the “Testing A Euro Currency Futures Scalping Strategy”, parts 1-6, a nice review of a lot of different ideas for trading the EC intraday.

]]>
By: Jeff Swanson https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6874 Fri, 20 Jul 2018 14:50:40 +0000 http://systemtradersuccess.com/?p=3658#comment-6874 In reply to Kevin.

Thanks Kevin. Let me know what setting you need and I can post them. If you’re not using TradeStation you probably will never matching them 100%. Just get close enough. Can you point me to the other EC intraday trading article? Not sure which one you’re talking about. Thanks!

]]>
By: Kevin https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6873 Thu, 19 Jul 2018 17:21:54 +0000 http://systemtradersuccess.com/?p=3658#comment-6873 Hi Jeff
Thanks for the article, well done as usual. Couple of questions. How about a list of detailed settings for non-Tradestion users? Hard to replicate your results if we don’t have this. Also, how is this article different from your previous series on EC intraday trading? (I Admit to being lazy. 🙂 )

]]>
By: Jeff Swanson https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6872 Tue, 01 Nov 2016 20:16:09 +0000 http://systemtradersuccess.com/?p=3658#comment-6872 In reply to David Shaffer.

Sorry about the confusion. It appears the download code does not have those Boolean values. I was most likely testing these Boolean values and they made it into the article but not into the download code. Those are just booleans. I’ll often use those as a longer-term filter. Often Bulltrend is true when price is above its 200-day moving average.

]]>
By: David Shaffer https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6871 Fri, 30 Sep 2016 15:00:35 +0000 http://systemtradersuccess.com/?p=3658#comment-6871 Thanks for sharing this process. I really enjoy your blog!

In your EasyLanguage code you refer to BearTrend and BullTrend. I assume that these are booleans set elsewhere in the code…? Or maybe built-in EasyLanguage functions? How are they calculated?

]]>
By: Jeff Swanson https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6870 Thu, 26 Feb 2015 00:27:06 +0000 http://systemtradersuccess.com/?p=3658#comment-6870 In reply to rob.

If you would like to test different entry and exit times I would take advantage of TradeStation’s built-in support for Time. I’ll assume you are working with minute charts.

Inputs:
OpenTime(930),
CloseTime(1600);

if ( Time = OpenTime ) then buy next bar at market;
If ( Time = CloseTime ) then sell next bar at market;

I just typed this from memory and have not compiled it. However this should get close to what you want. In the example code, you can test various entry and exit times.

]]>
By: rob https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6869 Wed, 25 Feb 2015 13:34:42 +0000 http://systemtradersuccess.com/?p=3658#comment-6869 Jeff I am trying to run a simple Study on ES to test the buy time in the morning and then close at the end of the day to see if there is any sort of an edge. I modified your function and set the code up as a strategy. Cant seem to get this to work what so ever. The optimization engine goes through the time increments improperly and tests times like 990 which is not a real time. Any thoughts on this? I also don’t get any trades generated.

Inputs:
THE_OPEN (0930),
THE_CLOSE (1600);

// define ALL your variables for storage.
Var: jMinofDate(0),TimeVal(0),MinOfDate(0);

jMinOfDate = Intportion(MinOfDate) ;

TimeVal = fracportion(computerdatetime) ;

MinOfDate = TimeVal*1440 ;

// The open
If ( jMinofDate >= THE_OPEN ) And ( jMinofDate < THE_CLOSE ) Then
Buy next bar market;

]]>
By: Jeff Swanson https://easylanguagemastery.com/building-strategies/step-one-in-building-an-intraday-trading-system/#comments/6868 Tue, 14 Aug 2012 00:02:25 +0000 http://systemtradersuccess.com/?p=3658#comment-6868 In reply to Derek.

Thanks Derek. The concept presented is the “key concept”. I tested the key concept upon various sessions to see which was most effective. After applying the key concept to a best-fit session, that would be our baseline system. From this point onward I would continue to develop the system against the baseline, which is the key concept applied to our targeted session. I would not investigate other sessions. Let me know if this is not clear.

]]>