Re: Beatle's Trend Trading System

3111
Karl2007 wrote: Sat Dec 23, 2023 5:54 am Hey Karl, thanks for your work for the community. In my experience the HTF provide the most "safe" entries, you still have to avoid some risks, like for example an entry for a long position given to you near a resistance or a short one near a support, but in general it is the safer one. What I have found to be most successful though by trading lower timeframes is finding an entry on the 5 min, this entry normally coincides with a higher TF view (given that we are using htf resistance/support for looking where to enter), if the trade is going well I can go up 1 TF and see if there would be an entry, if it does I stay in my position, and can even de risk it early if I got a good enough position that I believe won't be taken by a pullback.

The other good use for 5 min tf I have found is pullbacks, when in strong trends on higher tf sometimes it is kinda hard to find a good re entry point visually, lower time frames help a little bit with that one.

Just my little grain of sand based on my experience, wanna take advantage of the post by thanking Beatle for his wonderful system, green pips for everyone
I agree, I am testing the alignment of M30 and H4 signals. If the sub-indicators in H4 are in the opposite direction, there is a strong trend that will ruin the trade.
It would be worth to check if there is a strong contrary trend in H1 and H4 and avoid any operation.

In the backtesting, I also appreciated that if we get the starting point of a trend in H4, it will get many succesful operations in H30. For it, I have some indicators to see overbuy or oversell situations on a price support/ resistance or trendline. Divergences in RSI or Macd could also help also to detect possible change of direction.
Sometimes I use Fibo to see the level of retracement.
I would like to learn more of Market volume to see if I can use it as and extra confluence but at this moment I am learning how to do it. I know the signals given by Volume profile, but Market profile is different.

I check also lower time frames (in my case M15) to see if an entry signal is well consolidated in it or on the contrary, if there is a consolidated opposite signal and then is time to close the operation.
[/quote]

Hi,

Well personally for me I find continuation plays as the best setups to take. Easy to find, easy to trade with the best risk to reward and win rate balance.

To trade continuations, the first thing to first find a trend where a trend continuation is likely to occur.

The key to this is to systematically predict what the next candle is likely to do, all you need is a 40 to 60% accuracy. It has to be systematic to remove emotions, so far, I find currency strength and analysis to be the most consistent for this, just to determine pairs likely to trend or like SMB capital would term, "stocks in play".

The best time-frame to combine is Weekly and 30mins. This is why I love the BEATSV5 CONCEPT so much.

Use the weekend when the market is closed to analyse what the next weekly candle is likely to be, either bullish or bearish, you can use any method for this, I prefer currency strength. I just want very high probability plays, is the next candle likely to be bullish or bearish? (Rockz Fx 2 candle theory)

Once I've picked about 4 pairs (usually top two strongest and weakest currencies based on the weekly timeframe), I sit with these for the entire week on the 30mins timeframe with the Beats V5 for Excellent risk to reward.

Then you can add ICT theory Power of 3 or weekly profile to this and this is where the BEATSV5 shines.

I don't trade on Mondays. I expect accumulations to form.
If my bias is bullish.
The low of the week should form on Tuesday or Wednesday London or New York session, this is when I look for A++ entries and I hold to close on Thursday or Friday.
If my bias is bearish
The High of the week should form Tuesday or Wednesday London or New York session. I look for A++ entries and hold till Thursday or Friday.

Then manage your risk.

There are only 4 outcomes with this approach.
1. Everything goes smoothly, Market pulls back gives your sweet entries boom profit. (Clean bullish/bearish Weekly Candle)

2. Market goes in your direction, but no entries (Clean Bullish/Bearish Weekly Candle)

3. Market Consolidates (Here you can have breakevens or small losses or profits. Weekly Indecision or doji candles)

4. Market reverses (Here you're just wrong about the direction and you either have one loss, or no entries at all.)


There is no other outcome and your ability to determine early on which Weekly outcome you're likely to have determines your profitability.

Like Beetle says, enjoy the calm between the trades.

All we now have to do is simply prepare appropriately for each outcome, and manage risk or determine better ways to more accurately predict what the next weekly candle is likely to be and simply follow through.
These users thanked the author Knight for the post (total 5):
BeatlemaniaSA, knglerxst, Karl2007, FiveS, PhoenixBlueFeather


Re: Beatle's Trend Trading System

3112
Maybe someone can convert this script to MT4!

This script represents a Volume Weighted Average Price (VWAP) indicator with the option to display standard deviations from the VWAP line as bands. Let's go through the logic of the script step by step:

Declaration and parameter setup:

The Pine Script version is set to //@version=5.
The indicator is configured with the title VWAP and a short title VWAP, which is overlaid on the chart (overlay=true).
An input parameter hideonDWM is introduced to hide the VWAP on timeframes of 1D and above.
A variable anchor is introduced to determine the period for calculating VWAP (e.g., session, week, month, etc.).
An input parameter src is introduced to select the data source for calculating VWAP (default is HLC3 - the average of High, Low, and Close).
An input parameter offset is defined to offset the VWAP plot on the Y-axis.
Parameters are set for displaying standard deviation bands (showBand_X, stdevMult_X).
Volume check:

It checks if the script is on the last bar (barstate.islast) and if the cumulative volume is not equal to zero (ta.cum(volume) == 0). In the absence of volume, an error is generated.
Fetching event data (earnings, dividends, splits):

Functions request.earnings, request.dividends, and request.splits are used to obtain data about the corresponding events for the ticker.
Variables new_earnings, new_dividends, and new_split are created to track new data.
Determining a new period:

A switch statement is used based on the selected anchor to determine whether a new period has started (e.g., session, week, month, etc.).
If the period is set to "Earnings," "Dividends," or "Splits," a new period is considered to have started if the relevant data is available.
If the period is set to "Session," "Week," "Month," etc., it checks for a change in the time frame.
Calculation of VWAP and standard deviations:

The variable _vwap is assigned the VWAP value using the ta.vwap function.
The absolute value of the standard deviation (stdevAbs) is calculated based on the upper standard deviation band.
Displaying VWAP and standard deviations:

If hiding for timeframes of 1D and above is not set, the script displays VWAP and standard deviations.
The VWAP plot (plot) is displayed in orange.
Plots (plot) for each of the four standard deviation bands are displayed in different colors.
Areas between the upper and lower bands are filled to visualize standard deviations.
In summary, the script creates on the chart a Volume Weighted Average Price (VWAP) line and standard deviation bands, while also displaying events such as earnings reports, dividends, and stock splits.
Who knows others is wise
Who knows himself is enlightened

Re: Beatle's Trend Trading System

3113
Knight wrote: Sat Dec 23, 2023 10:11 pm Then you can add ICT theory Power of 3 or a weekly profile to this and this is where the BEATSV5 shines.

I don't trade on Mondays. I expect accumulations to form.
If my bias is bullish.
The low of the week should form on Tuesday or Wednesday London or New York session, this is when I look for A++ entries and I hold to close on Thursday or Friday.
If my bias is bearish
The High of the week should form Tuesday or Wednesday London or New York session. I look for A++ entries and hold till Thursday or Friday.


Then manage your risk.
Excellent!! 💪🏽🔥💸
These users thanked the author BeatlemaniaSA for the post:
Knight
BEATS V5 - "Enjoy The Quiet Between Trades”

Improve Your Trading Psychology - NO FEAR, NO DOUBT

Re: Beatle's Trend Trading System

3114
Knight wrote: Sat Dec 23, 2023 10:11 pm
While I totally agree with much you have posted and am thankful for the detailed description of your thought processes, I don't believe in the "I don't like Mondays"-myth so much.
Sometimes it will make sense, sometimes it won't.
If you look at the chart (I simulated the weekly average via MA on M30).
You can see quite well when price comes close to this MA and turns (daily open - im my time zone - for reference) again: there are many entries (on Mondays as on other days) once directional bias is clear...
Attachments
These users thanked the author josi for the post (total 4):
BeatlemaniaSA, Knight, RodrigoRT7, PhoenixBlueFeather


Re: Beatle's Trend Trading System

3116
Well that.

In moments of absolute boredom and preparing to go to my nearest poundland.

I stop by to bring Lembas Bread and Earendil's Light.

I explain it:

MIDAS SNIPER

Whenever you have a new arrow / support or resistance beetlemaniaSA BEATS V5 or An XARD semaphore You will immediately put a MIDAS there until another Arrow or Semaphore appears again.
Only MAJOR TRAFFIC LIGHTS and then if you like it you will press the button above on the right of the chart.

When a New Arrow or traffic light appears and is confirmed, your MIDAS will simply move / become the New Arrow or traffic light.

By the Way Search here:

https://en.wikipedia.org/wiki/MIDAS_technical_analysis

And the book is hard and nasty to read but that is the way for the Institutions to trade, they use MIDAS .

https://www.sec.gov/marketstructure/midas-system


And something that is not easy to find is a Leading indicator that tells you everything that is happening with volume and price in Real-Time.

DEMAND INDEX ON CHART
(Upgraded by MRTools with all the averages to test above/with the VOLUME and PRICE given by Sibbets directly on the chart and not crossing at the sub window)
Well, a man named James Sibbet did it... And you don't see it anywhere... and you don't find it easily...

And by the grace of Forex Station I found it ON CHART and it is not disgusting in a subwindow (which I also use with a simple line at level zero….)

post1295530361.html#p1295530361


Well, each one now decides what they want to do because after sharing it, it is no longer my problem.

And because not only The Light of Earendil and the Bread of Lembas were enough...

Here is GOLLUM (With his Double Personality ORDERS and NET
Without descriptions … GO AND LEARN ABOUT IT !)

MY ADVICE IS READ ALL THE WEB FXSSI !

https://fxssi.com/fxssi-order-book-mt4

https://tlap.com/order-book/


That's it.
I already did my Good Deed Today
Turning off the computer and heading out into the street.

Goodbye friends!



Ahhhhh
Two Interesting Things:

What do you think about knowing where the STOPS and LIMIT ORDERS / TAKE PROFIT ORDERS are??????

Well, I present to you

UNICORN DUST!!!

https://fxssi.com/fxssi-stop-loss-clusters-mt4

https://tlap.com/indikator-stoplossov/

https://tlap.com/indikator-limitnih-orderov/


(Now Read the Instructions at FXSSI or use the Google Translate to translate the Russian Web just like that if you are clever and NOT LAZY you will find Russian treasures…. Just have your Antivirus on and checking everything…)

https://tlap.com/instrumentyi/


And here it ended.

Happy Holidays and a Happy New Year to everyone and their families.
(Now get off your ass and learn how to use it because it's not my obligation to do so)

Always Thanks to my Collection / Selection

Better Dead Then Simple


Merry Christmas to All Of You!!!
These users thanked the author saishala for the post (total 11):
BeatlemaniaSA, Maxime2020, dmnik, DaveTrader, RodrigoRT7, eduarescobar, Karl2007, SijjiN, Xanadu, MKL222, PhoenixBlueFeather
From the domains of my desk and laptop Full of Porn and Charts I call upon the Spiritual Presence and Power of Richard Wyckoff, Jesse Livermore, George Soros and all the Wise in Volume and Standard Deviation to enlighten and make everyone get off their asses and go to study Market Structure, Liquidity Pools and Volume.

Selah

Re: Beatle's Trend Trading System

3117
Knight wrote: Sat Dec 23, 2023 10:11 pm
Use the weekend when the market is closed to analyse what the next weekly candle is likely to be, either bullish or bearish, you can use any method for this, I prefer currency strength. I just want very high probability plays, is the next candle likely to be bullish or bearish? (Rockz Fx 2 candle theory)


How do you determine currency strength? Do you use an indicator or website or some other method?
These users thanked the author knglerxst for the post:
Knight

Re: Beatle's Trend Trading System

3118
saishala wrote: Sun Dec 24, 2023 2:30 am Well that.

In moments of absolute boredom and preparing to go to my nearest poundland.

I stop by to bring Lembas Bread and Earendil's Light.

I explain it:

MIDAS SNIPER

Whenever you have a new arrow / support or resistance beetlemaniaSA BEATS V5 or An XARD semaphore You will immediately put a MIDAS there until another Arrow or Semaphore appears again.
Only MAJOR TRAFFIC LIGHTS and then if you like it you will press the button above on the right of the chart.

When a New Arrow or traffic light appears and is confirmed, your MIDAS will simply move / become the New Arrow or traffic light.

By the Way Search here:

https://en.wikipedia.org/wiki/MIDAS_technical_analysis

And the book is hard and nasty to read but that is the way for the Institutions to trade, they use MIDAS .

https://www.sec.gov/marketstructure/midas-system


And something that is not easy to find is a Leading indicator that tells you everything that is happening with volume and price in Real-Time.

DEMAND INDEX ON CHART
(Upgraded by MRTools with all the averages to test above/with the VOLUME and PRICE given by Sibbets directly on the chart and not crossing at the sub window)
Well, a man named James Sibbet did it... And you don't see it anywhere... and you don't find it easily...

And by the grace of Forex Station I found it ON CHART and it is not disgusting in a subwindow (which I also use with a simple line at level zero….)

post1295530361.html#p1295530361


Well, each one now decides what they want to do because after sharing it, it is no longer my problem.

And because not only The Light of Earendil and the Bread of Lembas were enough...

Here is GOLLUM (With his Double Personality ORDERS and NET
Without descriptions … GO AND LEARN ABOUT IT !)

MY ADVICE IS READ ALL THE WEB FXSSI !

https://fxssi.com/fxssi-order-book-mt4

https://tlap.com/order-book/


That's it.
I already did my Good Deed Today
Turning off the computer and heading out into the street.

Goodbye friends!



Ahhhhh
Two Interesting Things:

What do you think about knowing where the STOPS and LIMIT ORDERS / TAKE PROFIT ORDERS are??????

Well, I present to you

UNICORN DUST!!!

https://fxssi.com/fxssi-stop-loss-clusters-mt4

https://tlap.com/indikator-stoplossov/

https://tlap.com/indikator-limitnih-orderov/


(Now Read the Instructions at FXSSI or use the Google Translate to translate the Russian Web just like that if you are clever and NOT LAZY you will find Russian treasures…. Just have your Antivirus on and checking everything…)

https://tlap.com/instrumentyi/


And here it ended.

Happy Holidays and a Happy New Year to everyone and their families.
(Now get off your ass and learn how to use it because it's not my obligation to do so)

Always Thanks to my Collection / Selection

Better Dead Then Simple


Merry Christmas to All Of You!!!
Last 2 images indicator doesnt work to me. Does it need an open market?

Re: Beatle's Trend Trading System

3119
ffsss wrote: Sun Dec 24, 2023 3:08 am Last 2 images indicator doesnt work to me. Does it need an open market?
Yes.
( I think I have access to mine because i use it in a daily basis )

look If you can see With some of the COIN's

BTC is open and Ethereum too.

Look at one open market.
And take a few seconds to load but not too much.
From the domains of my desk and laptop Full of Porn and Charts I call upon the Spiritual Presence and Power of Richard Wyckoff, Jesse Livermore, George Soros and all the Wise in Volume and Standard Deviation to enlighten and make everyone get off their asses and go to study Market Structure, Liquidity Pools and Volume.

Selah


Who is online

Users browsing this forum: Applebot [Crawler], Forexlearner, Google [Bot], Krunal Gajjar, Liltune95, normannasty, SOLESHOE, specialkey and 175 guests