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.

dsalas

Automated System Based on Support and Resistance

Recommended Posts

Hello Guys, i use Market profile, volume profile and of course basic support and resistance on a chart for finding levels on the ES, FESX, CORN and Bund.....

 

I was thinking about building an automated trading system but i HAVE NO idea, really, zero idea....on how people do this....does anyone have a clue about how to do this...it will be very good to write a program that "does" things for me instead of me watching the screen at lunch hour ( i am in the UK)

 

thanks lots

 

Daniel

:)

Share this post


Link to post
Share on other sites
Hello Guys, i use Market profile, volume profile and of course basic support and resistance on a chart for finding levels on the ES, FESX, CORN and Bund.....

 

I was thinking about building an automated trading system but i HAVE NO idea, really, zero idea....on how people do this....does anyone have a clue about how to do this...it will be very good to write a program that "does" things for me instead of me watching the screen at lunch hour ( i am in the UK)

 

thanks lots

 

Daniel

:)

 

if you can imagine it,

visualize it,

quantify it,

articulate it,

you can program it.

Share this post


Link to post
Share on other sites
How can I do that tams?

 

You have already imagined it,

you have already visualized it,

 

now you have to

1. quantify it in logics, (ie IF this happens, THEN do this, ELSE do that...)

2. articulate it with written words, flow charts, diagrams, pseudo codes,

 

then we can program it.

Share this post


Link to post
Share on other sites

The key is risk management and that is dependent on many things, sometimes Time, sometimes Speed of Movement, sometimes Volume, sometimes Dollar amount, sometime Cycles of X Number of Bars, sometimes Seasonals, sometimes Percentages of Movement and sometimes Percentages of Account with regard to Leverage and/or Drawdown sometimes external events both known and unknown

 

The advice of IF THIS THEN THAT is good but you also need to know how to program position sizing according to market condition. Not all trades are equal in terms of risk some are scalps some are swings. Differentiate this and then you have an ALGO to take on the very best

 

You state support and resistance. Define them. for me in MP then support is defined as when the buyer is able to halt the selling and the buyer is able to overwhelm the seller and stabilize the market in terms of directional trade. and obviously vice versa. This could be as simple as saying if X bar rotates in the opposite direction and exceeds then.... However how would you deal with a bar that opens on a high and closes on a low followed by the next bar that opens on the low and closes on the high

 

Define your Timescale, Define your Basis for Order Entry and Order Exitt, Define Rsk Proposed,

write it out and apply the logic

Share this post


Link to post
Share on other sites
However how would you deal with a bar that opens on a high and closes on a low followed by the next bar that opens on the low and closes on the high

 

You define a range filter, this solves this issue. Volatility works better for this than % price or % retrace.

 

Or you invent AI & just tell it your logic & let it write the code for you :missy:

Share this post


Link to post
Share on other sites

Hi Dsalas,

 

Have you programmed on your charting platform before? If not then the first step is to learn how to code some simple indicators and get familiar with the programming language. Most charting applications have tutorials to help you. Then if you want to look at support/resistance levels you can code a simple indicator to plot the highest high and lowest low over different time frames, eg the last hour, since session start, last 15 minutes, etc. This can show you clusters of support/resistance levels and you then move to the next step, deciding what you want your system to do when price is near those levels.

 

Good luck in your trading.

Share this post


Link to post
Share on other sites

I think you shouldn't do it on your own, maybe the best way is gonna be to ask help from the professionals? Probably they will do it in a better way, and you will make your lunch time free from watching your screen!

Share this post


Link to post
Share on other sites
I think you shouldn't do it on your own, maybe the best way is gonna be to ask help from the professionals? Probably they will do it in a better way, and you will make your lunch time free from watching your screen!

 

Then you may as well just give them your money and have them be your fund manager. Doing it yourself is what makes it YOUR system, instead of theirs. Once you have your idea just steal some code and tweak it to fit your logic.

Share this post


Link to post
Share on other sites

Hi To all guys, Hi TraderWill. No I have not programmed anything before. I have no idea how to do this. I once attend a course for Visual Chart where they teach you to program based on MA, but it was really bad. I would like to know how to program an strategy, i mean, i dont even know what book to read or which seminar to attend. I use market profile and volume profiles as i titled the thread but that is all. Programming a strategy that could say something like "if the market is trending up and the value are high is touch buy at market with a stop of 2 points in the E-mini sp 500 and a profit target xxx" for example that is the issue i would have to look at levels in the market to determine where are the best entry points that is why i have no idea how to do this

 

thanks so much for the help guys

 

Daniel

Share this post


Link to post
Share on other sites
Hi To all guys, Hi TraderWill. No I have not programmed anything before. I have no idea how to do this. I once attend a course for Visual Chart where they teach you to program based on MA, but it was really bad. I would like to know how to program an strategy, i mean, i dont even know what book to read or which seminar to attend. I use market profile and volume profiles as i titled the thread but that is all. Programming a strategy that could say something like "if the market is trending up and the value are high is touch buy at market with a stop of 2 points in the E-mini sp 500 and a profit target xxx" for example that is the issue i would have to look at levels in the market to determine where are the best entry points that is why i have no idea how to do this

 

thanks so much for the help guys

 

Daniel

 

the mechanics of programming is easy... you just need to read the manual.

 

the challenge is not in the programming language,

but in how you define, in plain English, what needs to be programmed.

 

the computer is just a dumb machine.

it executes actions according to your instruction.

you just need to give it that "Instruction" for it to be smart.

Share this post


Link to post
Share on other sites

eg.

when you say a "pivot low"... a lot of people will naturally have a visual idea of what you are trying to convey:

a "low"... then a change in direction.

although different people would have different definition of what a "pivot low" is,

most will have a similar visual image.

 

but a computer has no imagination.

you have to tell the computer in no uncertain terms the characteristics and attributes of a pivot.

you have to define... step by step, line by line, what constitute a pivot.

and you have to do the same for all the logics you use in your trading.

Share this post


Link to post
Share on other sites
the mechanics of programming is easy... you just need to read the manual.

 

the challenge is not in the programming language,

but in how you define, in plain English, what needs to be programmed.

 

the computer is just a dumb machine.

it executes actions according to your instruction.

you just need to give it that "Instruction" for it to be smart.

 

As a non-programmer (education wise) with an IT background I would have to disagree. Even one of the big quant firms said recently "it's easier to teach a programmer to trade than a trader to program". they hire programmers with no trading background, then feed them logic trees.

 

Very few programming structures are written "for dummies" to be able to get a handle on. Only those written by a complete novice in their own process of trying to learn come close to being a teaching guide.

 

I agree that the logic is the key to success, but getting that into code can be a painful, if not impossible, task for some (which is when they come to Tams for help!)

Share this post


Link to post
Share on other sites

Daniel, if you've never programmed before then you have a challenge ahead of you. Look in your charting platform's help file and see if they teach some programming basics there, or maybe there's a link on their website with programming tutorials. Then just go through the tutorial lessons and sample code patiently. Try to program a simple indicator like a moving average, ramp up the difficulty by programming a moving average cross system, etc, just gradually build up the difficulty. A good tutorial will walk you through the process. After you're done with that you can look at the code for the indicators built into your charting platform. I know that you can look at source code for indicators on Tradestation, Metatrader and Ninjatrader, I don't know about any other platforms, no experience with them.

 

It won't be a quick process because you'll be learning a new language. Only after you've learned it can you start coding your own system. Unfortunately there's no shortcut.

 

Now if you have a friend who knows how to program you could get together with him, share your strategy with him so that he does the coding and as long as you know that you can trust him then you two will be the only people trading it.

 

Good luck in your trading.

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

    • DELL Dell Technologies stock, good day moving higher off the 90.99 double support area, from Stocks to Watch at https://stockconsultant.com/?DELL
    • MCK Mckesson stock, nice trend and continuation breakout at https://stockconsultant.com/?MCK
    • lmfx just officially launched their own LMGX token, Im planning to grab a couple of hundred and maybe have the option to stake them. 
    • Date: 2nd April 2025.   Market on Edge: Tariff Announcement and Volatility Ahead!   The US economic and employment data continues to deteriorate with the job vacancies figures dropping to a 5-month low. In addition to this, the IMS Manufacturing PMI also fell below expectations. However, both the US Dollar and Gold declined simultaneously following the release of the two figures, an uncommon occurrence in the market. Traders expect a key factor to be today’s ‘liberation day’ where the US will impose tariffs on imports. USDJPY - Traders Await Tariff Confirmation! Traders looking to determine how the USDJPY will look today will find it difficult to determine until the US confirms its tariff plan. Today is the day when Trump previously stated he would finalize and announce his tariff plan. The administration has not yet released the policy, but investors expect it to be the most expansionary in a century. President Trump is due to speak at 20:00 GMT. On HFM's Calendar the speech is stated as "US Liberation Day Tariff Announcement". Currently, analysts are expecting Trump’s Tariff Plan to impose tariffs on the EU, chips and pharmaceuticals later today as well as reciprocal tariffs. Economists have a good idea of how these tariffs may take effect, but reciprocal tariffs are still unspecified. In addition to this, 25% tariffs on the car industry will start tomorrow. The tariffs on the foreign cars industry are a factor which will particularly impact Japan. Although, traders should note that this is what is expected and is not yet finalised. Last week, President Trump stated that he would implement retaliatory tariffs but allow exemptions for certain US trade partners. Treasury Secretary Mr Bessent and National Economic Council Director Mr Hassett suggested that the restrictions would primarily target 15 countries responsible for the bulk of the US trade deficit. However, yesterday, Trump contradicted these statements, asserting that additional duties would be imposed on any country that has implemented similar measures against US products. The day’s volatility will depend on which route the US administration takes. The harshness of the policy will influence both the Japanese Yen as well as the US Dollar.   USDJPY 5-Minute Chart   US Economic and Employment Data The JOLT Job Vacancies figure fell below expectations and is lower than the previous month’s figure. The JOLT Job Vacancies read 7.57 million whereas the average of the past 6 months is 7.78 million. The ISM Manufacturing Index also fell below the key level of 50.00 and was 5 points lower than what analysts were expecting. The data is negative for the US Dollar, particularly as the latest release applies more pressure on the Federal Reserve to cut interest rates. However, this is unlikely to happen if the trade policy ignites higher and stickier inflation. In the Bank of Japan’s Governor's latest speech, Mr Ueda said that the tariffs are likely to trigger higher inflation. USDJPY Technical Analysis Currently, the Japanese Yen Index is the worst performing of the day while the US Dollar Index is more or less unchanged. However, this is something traders will continue to monitor as the EU session starts. In the 2-hour timeframe, the USDJPY is trading at the neutral level below the 75-bar EMA and 100-bar SMA. The RSI and MACD is also at the neutral level meaning traders should be open to price movements in either direction. On the smaller timeframes, such as the 5-minute timeframe, there is a slight bias towards a bullish outcome. However, this is only likely if the latest bearish swing does not drop below the 200-Bar SMA.     The key resistant level can be seen at 150.262 and the support level at 149.115. Breakout levels are at 149.988 and 149.674. Key Takeaway Points: Job vacancies hit a five-month low, and the ISM Manufacturing PMI missed expectations, adding pressure on the Federal Reserve regarding interest rate decisions. Traders await confirmation on Trump’s tariff policy, which is expected to impact the EU, chips, pharmaceuticals, and foreign car industries. The severity of the tariffs will influence both the JPY and the USD, with traders waiting for final policy details. The Japanese Yen Index is the worst index of the day while the US Dollar Index is unchanged. 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 of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Michalis Efthymiou 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 Leveraged 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.
    • HLF Herbalife stock, watch for a bull flag breakout above 9.02 at https://stockconsultant.com/?HLF
×
×
  • Create New...

Important Information

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