To operate on the markets, you need a strategy.
For many people, the main question is: What strategy must i use?
There is hundred of different indicators avaiable today, and each of them give a different piece of information about one or another caracteristic of the asset that is being traded.
A wrong assumption that a lot of people make when they start to operate on financial markets is that you just need to pick some good indicators and you have a strategy ready to go.
What make this wrong is that, like i said, indicators only show a part of the information, and it's only one piece of the problem.
A true trading strategy must cover:
And the most important thing about the strategy: Are you comfortable with the strategy?
After 3 years of learning, i think i might have found a profitable strategy that i am comfortable with, and i am going to build it up here, to show you my proccess of building a strategy.
The indicators you will be using for the strategy is probably the most important part of creating a strategy.
They will be base of your decisions, and you must fully understand what kind of information they are providing, and be confortable while using them.
Also, the kind of strategy you are trying to implement must match with the indicator. For example, if you are going to try to "surf" the trend, you must use trend indicators.
For the strategy i am building, my aim is to find the trend direction, and try to follow that trend as long as possible. Therefore, i will be using three indicators:
The Hull Moving Average(HMA) works the same way as the others moving averages (SMA, EMA, WMA), but it reduces the price lag by a lot.
Here is how it's calculated:
1 Calculate a Weighted Moving Average with period n / 2 and multiply it by 2
2 Calculate a Weighted Moving Average for period n and subtract if from step 1
3 Calculate a Weighted Moving Average with period sqrt(n) using the data from step 2
HMA= WMA(2*WMA(n/2) − WMA(n)),sqrt(n))
For this strategy, i will be using this indicators in two ways:
Both HMAs will also be used as exit and protection (hedge) points, but i will detail it a bit later.
Ichimoku clouds is a bit harder to explain and if you want to learn it in detail check this article.
While this indicator draws 5 lines, i am going to use only two of them: senkou span A, senkou span B
These two lines plots on the chart what is called the cloud, wich also work as a trend indicator:
While this is a good trend confirmation, an interesting thing to notice about the Ichimoku clouds is that they show a 'resistance area', since when the price go through the cloud, it is an indication of trend reversal.
Because of that, i will be using the Ichimoku cloud to define where i will set the stop loss of each order.
After the choice of the indicators you will be using, it's time to design how you are going to use their information to enter a trade position.
In my strategy, to position myself on a trade, i will be using the HMA described above as a signal.
My strategy aims to enter a trend reversal as soon as possible, so here is the point of decision:
1 - Identify the trend
I will be using the Slow HMA to identify the trend:
2 - Find the points where the price have a correction before returning to the trend.
No matter what the price trend is, the price of the assets will suffer corrections along the way before return to the trend.
The price corrections are the bests point of entry on a trend.
That way, i will be using the Fast HMA to monitor when a correction is probably ending.
Knowing when to exit a trade is as important as knowing when to enter.
Trading is about extracting money from the markets, so you must have a clear definition of when you want to close a trade and take the profit.
The longer you expose yourself on a position, the more you might not be able to get the best value on your trade.
In the strategy i am building, the ideal situation is:
Since the indicator that is giving me the information about the trend direction is the Slow HMA, i will be using it to define the exit point of an strategy:
To be successful as a trader, one of the most important aspects of each trade is to know how much risk is you are willing to take and how much return that risk might bring.
This is a really extense subject, and i will have to write a whole article only to talk about it, but here is a good starting point and here is another one detailing a good process to set your risk/reward ratio on your trades.
Since on the strategy i am building the reward (take profit order) is going to be a floating point (see exit point signal above), i will only have to define how big will be the risk.
In this case, i was able to see two interesting informations that i could extract from the indicators i am using:
This information allow me to set the first stop loss of the trade (the risk) exactly at the value of the Slow HMA at the time i enter the position.
With this information, i can move the stop loss to follow the Ichimoku cloud lower side (in the case of a buy order), wich will allow me to take some profit if some unexpected and sudden price movement happen.
Depending on the market and the asset, your trading positions can be protected by a hedge.
Hedges are usually used on long-term positions, as a way for the trader to protect himself from the markets short-term volatility, locking up profits already gained, or reducing a loss.
Basically, you create a hedge when you open a trading position on the opposite direction. For example:
But you have to be careful, and fully undestand what you are doing and how it fits your strategy, because a wrong placed hedge can double your lossess.
The time-frame where you will be trading is an important part of the strategy.
A strategy might work on a 1 hour time-frame, and but be a disaster in a longer time-frame.
Also, you must always consider if there is any fees if you keep an asset/position for more than a day. For example:
This means that your must consider in you strategy if you will have a cost to hold a position, and decide if it is worth or not to hold that position at the end of the day.
Besides that, some market have some already known events where there is a big change on price volatily that can break any well-tought trading strategy:
What happen in these cases is that the big players (aka whales) position themselves for long-term positions based on the result of these events, wich create a big influx of money on the market, and cause a big price change in a short time.
It is important to know these recurrent effects, and decide if your strategy can survive them or not
A good practice i use to finish the process of creating a trading strategy is to write it all down as a programming language logic. This can help to easy the decision process of entering or exiting an operation.
Using the strategy i built as an example:
# HMA+Ichimoku Trading Strategy
Slow HMA Direction = Long term trend
Fast HMA Direction = Short term trend
ON EVERY NEW CANDLE Do this
IF there is NO position opened;
(not equal)
IF Short term trend == Long term trend
Do nothing
(equal)
IF Short term trend = Long term trend
Open trading position on the same direction of Long term trend
Set Stop loss = Slow HMA value
IF there is a position opened;
(using buy position as example)
IF Long term trend change direction
Close position
IF Ichimoku cloud lower limit < Last candle close price
Move Stop loss = Ichimoku cloud lower limit
IF Short term trend == Long term trend
Open a sell trade (hedge)
Set Hedge Take profit = buy trade Stop loss
Set Hedge Stop Loss = Short term trend value
WHEN Price close above the hedge position
MOVE stop loss to a positive position (take some profit if the trend resume)
WHEN Short term trend = Long term trend
Close Hedge position
There you go. Writing the strategy in a program logic form helps to remove part of the emotion from the strategy decision.
Also, it can help to clarify the strategy if at some point you want to program a robot, or ask someone to do it for you.
On paper, all strategies might work. But don't use it before testing on demo/dummy/paper accounts.
Besides watching how the strategy will work on a real-time market, it also helps you understand the best way to use it.
Trading strategies are the core business of a trader, and it's also the riskier part of the job.
Choosing a wrong strategy, or not testing the strategy enough can easily wipe out your trading account.
So it is really important that you understand how your strategy works and wich are the real signs to enter or exit a trade.
And as always, never stop trading.
Want to talk more about trading? Join Traders School Community