Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

feng2088

Looking for Advice

Recommended Posts

Hello all,

 

I was here three weeks ago asking for help on some coding issues. A lot of you advised me to learn and read more about EasyLangage. I really appreciated your suggestions. Now I am able to program some simple strategies with EasyLanguge. I came up with a strategy that has a 91% winning rate. However the profit factor is only 1.15 and the total net profit is less than the total commission. I tested this strategy with one emini contract on a two year 1-mini data feed. Can you please review the attached performance reports and advise if this strategy is applicable? Should I find a new broker that offers lower rates? Thanks.

report.thumb.JPG.fcf8eaeb93513b390a741bf0fb39709f.JPG

report2.thumb.JPG.744f402342ef890db5cb61808794a49e.JPG

Share this post


Link to post
Share on other sites
Hello all,

 

I was here three weeks ago asking for help on some coding issues. A lot of you advised me to learn and read more about EasyLangage. I really appreciated your suggestions. Now I am able to program some simple strategies with EasyLanguge. I came up with a strategy that has a 91% winning rate. However the profit factor is only 1.15 and the total net profit is less than the total commission. I tested this strategy with one emini contract on a two year 1-mini data feed. Can you please review the attached performance reports and advise if this strategy is applicable? Should I find a new broker that offers lower rates? Thanks.

 

Are you using limit orders to enter and exit?

Share this post


Link to post
Share on other sites

you're giving a HUGE portion of your profits to pay commissions.

the current strategy doesn't seem viable to me....just an opinion.

couple of questions

1- did you 'optimize' you efs strategy for the e-mini?

2- have you looked at fewer trades with higher targets?

3- are you using an auto-trader?

peter.

Share this post


Link to post
Share on other sites

Looking at your report, one must also consider the slippage for a strategy which will generally be higher than the commissions. It is probably a good idea on any tested strategy to use a minimum of 1 tick slippage for each entry and each exit. I have seen many systems that were returning 200% annual return take a nose dive and blow the account within the first week of trading when factoring in slippage and commissions. We generally add four ticks slippage a round turn trade and $5 commission, even though most of our strategies are very short term styled trading. Most software programs allow you to set these costs in your parameters where they are automatically calculated into your summary reports.

Share this post


Link to post
Share on other sites

Thanks all. You are right I didn't think about slippage. I think I should use limit orders to enter and exit. Are there any reserved words I can make Tradestation to buy at bid and sell at ask? And if the buy order didn't get fill in 5 second, the trade would be cancelled? Thanks

Share this post


Link to post
Share on other sites

" Buy next bar at open next bar -0.25 limit " ----- would this line of codes help me get the position filled at the bid price? how long would TS wait until it cancels the excecution if the order doesn't get filled? I will be trading on a 1 min time frame. Thanks

Share this post


Link to post
Share on other sites

To help control slippage, I do use limit orders to enter positions in an attempt to achieve the best fill price possible at my anticipated price level. With that said, I do not use limit orders to exit a position when my profit objectives are reached. When it is time to exit the market, I want out and I am willing to give up a tick or two of slippage to exit my position to assure I get out. An exception to this rule is in non-liquid markets or during night sessions that are thinly traded. This slippage is calculated into my profit objectives which takes into account the number of total contracts in the position that must be liquidated. As mentioned in my earlier post, there should be a setting in system properties to add commission and slippage to your backtesting results (see image, Commission & Slippage).

 

When you ask about entering at the bid and ask prices, I assume you are referring to backtesting strategies. It has been a great while since I have worked with Tradestation but I do know Multicharts (which we utilize as well as RightEdge) can be configured to backtest using the ask and bid prices (see image, Backtesting Ask & Bid). In a live trading environment it is of smaller concern since limit orders are requesting to be filled at your stated price or better.

 

As for your 5 second cancelation of orders: That may limited to the time frequency (i.e., 1,2,3—minute bars) used to generate a condition which triggers an order. There are also various ways to code an exception when using tick data that can cancel outstanding orders after a certain period. For live or simulated (demo account) trading, it could be a function of the broker API. You may also have the option to convert limit orders into market orders after a certain length of time (see image, Convert Orders).

 

Your example of a buy order depends on your objective. Are you wanting to get filled at a certain price, or are you wanting to simulate the cost of trading into your strategy (which may be accomplished as described above). Also, depending on trading objectives (and your setting, environment, data frequency) you may wish to enter an order before the completion of the one minute bar once a signal is triggered. This may be accomplished by enabling Intra-Bar Order Generation (see image, Intra-Bar Order Generation) which may also be coded directly into the script (i.e., [intrabarOrderGeneration = True]).

 

If you are actually needing to enter the order one tick below the next bar’s opening price of say, ES for instance: Buy 1 contract Next Bar (Open - .25) Limit ; However, the problem with this type of order (as is characteristic in limit orders) is you can be right about anticipated price direction and not profit from being right simply because prices never retrace to your limit price. I use limit orders when I am expecting a retracement of prices to a certain level prior to heading in my desired direction.

 

There are always trade-offs and what works for me may not work for you or anyone else. Reminds me of the saying that we don’t trade the markets, we trade our beliefs. Hope this helps.

5aa7105d774b6_CommissionSlippage.png.2debb6ecbb124fd38fc42ee253544314.png

5aa7105d7c5a7_BacktestingAskBid.png.029dd67475d4154cb0c287d7f0b22998.png

5aa7105d80ba8_ConvertOrders.png.379a92595a8d66313e7f2b92debfdae0.png

5aa7105d83aea_Intra-BarOrderGeneration.png.3c48b9c9203b1cd8d76d47e67c8ec937.png

Share this post


Link to post
Share on other sites

Thank you much for your post, Billy! I modified my codes and now for both buy and sell I use limit orders (see below). I want $0 slippage always. You mentioned that if I used -0.25 limit, my order may not be filled, That is ok since I will be trading on the 25 ticks time frame. I don't mind missing those opportunities. I am not ready to go live yet as I am not sure if i miss anything here. I attached couple screenshots of my strategy performance and settings . The return seems good when I backtest it, but would I see a big discrepancy if I go life? Thanks

 


Buy next bar at open next bar -0.25 limit ; 

If Positionprofit > x amount then 

Sell next bar at Positionprofit limit;

5aa7105d8fa27_Performance1.JPG.26d61f603b3f571309b9d7bad44a0df9.JPG

5aa7105d94b52_Performance2.JPG.15131a15b12e3d39aa5bca49e6d93d9d.JPG

5aa7105d989ff_strategysetting1.JPG.4900430425af1814e886d13aa25a3f9c.JPG

5aa7105d9c37e_strategysetting2.JPG.ae52f2d89d5cbd84a7c8c89d49f65a19.JPG

5aa7105da0853_strategysetting3.JPG.3b23147142a56b1163df68a70e82c688.JPG

Share this post


Link to post
Share on other sites

feng2088,

 

I would recommend you shoot for less trades, and more dollars per trade. Also, limit orders will eliminate slippage, but you will miss out on your best trades, so there is still an expense that should be considered. You should check the "Fill entire order when trade price exceeds limit price" which will give you a more realistic report. Also, you must test this on a time frame NOT within the time frame you optimized on. This will be your out-of-sample test, and will tell you if your strategy has any chance of success.

Share this post


Link to post
Share on other sites

The performance report shows that your average losing trade is ten times larger than your average winning trade, so a 90% win rate is basically keeping you even. Of course once you figure in the commissions and slippage on all of those trades you're just digging a hole for yourself. You may want to revisit the strategy or look for a new one. As others have said I'd suggest a strategy that has fewer trades each day and also one that has winning and losing trades more similar in size. That way if you can come up with a 60% - 70% win rate you'll do a whole lot better than with the strategy you showed us. I'd steer away from a system that gives the performance you showed us.

Good luck

Share this post


Link to post
Share on other sites

at 25 tick time frame, you may not be able to get your order to the TS server in time. when you modify an order, I think TS will cancel the original order, wait to confirm it's cancelled, and then send a new order.

 

also make sure you are not on magic fills and on realistic fills.

Share this post


Link to post
Share on other sites

Basically, your Profit Factor Should be more than 1.5, even if only half of your trades are profitable. Use slower time frame, and do a back testing for at lease few years, and forward tests if you optimize the strategy in any way.

 

If you optimize the strategy, the easiest forward test for any strategy is to apply the strategy to all the data possible without recent X months. Then do the the rest of coding, optimization, and add the data you were missing. This way you will see if the strategy will even work for the X months.

 

All the best,

 

Lukas

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 28th March 2024. The US Dollar Strengthens As Economists Believe The ECB Will Struggle To “Hold”. Early this morning, the Fed Governor advised “there is no rush to cut rates” and “the data within the upcoming months” will be vital. The US Dollar Index rises to a 1-month high. The value of the USD will largely be based on today’s data on economic growth, consumer sentiment and pending home sales. Dollar and index traders are closely monitoring tomorrow’s Core PCE Price Index which analysts expect will read 0.3%. A higher inflation reading can potentially pressure stocks and support the Dollar. Strong declines in NVIDIA and Netflix stocks pressured the NASDAQ on Wednesday. Though, buyers entered late in the session to boost the overall price. EURUSD The latest comments from members of the Federal Reserve are supporting the US Dollar. The forward guidance between members of the Federal Reserve is mainly not aligned. The Chairman advises the Fed does not need much more proof for the regulator to feel comfortable reducing rates. Whereas the Fed Governor, Mr Waller, advises there is no rush, and he wants to see a few months of data before determining the next move. Therefore, the upcoming inflation and employment data will remain vital and could even push back rate hikes further. According to economists, the Federal Reserve will cut the interest rate on 3 occasions this year, but the timing of the first cut is less certain and may change depending on upcoming data. A positive factor for traders is that EURUSD exchange is not witnessing conflicting currencies. The US Dollar is trading 0.12% higher while the Euro is declining against most currencies. The Euro is trading 0.06% lower against the Pound and the Canadian Dollar and 0.16% lower against the Japanese Yen. Yesterday, the head of the Bank of Italy, Mr Cipollone, said that the authorities were confident that inflation would return to the target of 2.0% by mid–2025. He also supports the lower of interest rate and will use this as a basis for adjusting monetary policy. The Euro is generally under pressure as investors believe the European Central Bank will struggle to avoid cuts if the Fed decide to delay their adjustments. The US Dollar will be influenced by four major economic data releases. The US Final GDP, Weekly Unemployment Claims, Pending Home Sales and Consumer Sentiment Index. If these read higher than expectations with the weekly unemployment claims dropping, the US Dollar is likely to witness further support. However, investors should note the main release will be tomorrow’s Core PCE Price Index. Traders are expecting no major news for Europe and volatility levels may fall tomorrow as European markets are closed for Easter. Technical analysis currently points towards a continued downward trend. The price is trading below the neutral on the RSI and below the 75-Bar EMA. However, investors should note this will also be dependent on upcoming US data. USA100 The price of the USA100 was under pressure throughout the whole US session but was saved by an increased volume of buyers late in the session. However, a positive point is the components held onto their value. Even though the index fell in value, only 28% of the components declined. Investors will now turn their attention towards tomorrow’s PCE Price Index and the upcoming earnings season which will start in mid-April. The price is now trading slightly above the Moving Averages but slightly below the 50.00 on the RSI. Therefore, technical analysis remains at the “neutral” level and continues to indicate a larger price range. If today’s economic data is positive the stock market can witness confidence and support as this continues to indicate a soft landing. Though, if the data is too strong, it could also trigger a hawkish Fed which is known to be negative for the USA100. Always trade with strict risk management. Your capital is the single most important aspect of your trading business. Please note that times displayed based on local time zone and are from time of writing this report. Click HERE to access the full HFM Economic calendar. Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Michalis Efthymiou Market Analyst HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in FX and CFDs products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • $IBKR Interactive Brokers stock narrow range breakout watch above 111.16 , see https://stockconsultant.com/?IBKR
    • $ISRG Intuitive Surgical stock narrow range breakout watch above 403.07 , see https://stockconsultant.com/?ISRG
    • $JETS ETF top of range breakout watch above 20.61 , see https://stockconsultant.com/?JETS
    • $KKR KKR stock bull flag breakout watch above 102.64 , see https://stockconsultant.com/?KKR
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.