BONZ. Using technical indicators to trade.

If you don't know where to start, start here! Don't be afraid to ask questions.

Moderator: moderators

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1663
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby IgazI » Sat Oct 15, 2022 5:35 pm

Don_xyZ wrote:
Don_xyZ wrote:So... bands/ channel. Which one do you think is the better choice for swing trading or scalping?

Bollinger band.png

Keltner channel.png

Starc bands.png

Gonna revisit them later.


For sure BB is the one mostly used by traders however, there are also good reasons to consider the other two because they use different things in their formulas. However, BB's bands are more dynamic and that is the reason why I prefer this band compared to the other two. There's a lot of trading strategies based on BB on the internet whether it's a single use or in conjunction with other indicator(s).


This one is pretty good.

Code: Select all

//@version=2
study("Bollingers Bands Fibonacci ratios",shorttitle="FiBB",overlay=true)
len=input(defval=20,minval=1)
p=close
sma=sma(p,len)
avg=atr(len)
fibratio1=input(defval=1.618,title="Fibonacci Ratio 1")
fibratio2=input(defval=2.618,title="Fibonacci Ratio 2")
fibratio3=input(defval=4.236,title="Fibonacci Ratio 3")
r1=avg*fibratio1
r2=avg*fibratio2
r3=avg*fibratio3
top3=sma+r3
top2=sma+r2
top1=sma+r1
bott1=sma-r1
bott2=sma-r2
bott3=sma-r3

t3=plot(top3,transp=0,title="Upper 3",color=teal)
t2=plot(top2,transp=20,title="Upper 2",color=teal)
t1=plot(top1,transp=40,title="Upper 1",color=teal)
b1=plot(bott1,transp=40,title="Lower 1",color=teal)
b2=plot(bott2,transp=20,title="Lower 2",color=teal)
b3=plot(bott3,transp=0,title="Lower 3",color=teal)
plot(sma,style=cross,title="SMA",color=teal)
fill(t3,b3,color=navy,transp=85)
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
Don_xyZ
rank: 1000+ posts
rank: 1000+ posts
Posts: 1163
Joined: Tue Dec 14, 2010 9:15 am
Reputation: 1022
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby Don_xyZ » Sun Oct 16, 2022 5:52 am

One of the first few ideas introduced to me when starting out in the trading world.
The books said there are 2 categories in the indicator world, the lagging indicator and the leading indicator. So I combined them. Problem was, I didn't know where to take profit lolz

200 SMA and Stochastics 14, 3, 3.
MASt.png
MASt.png (96.15 KiB) Viewed 3525 times


MASt 2.png
MASt 2.png (90.19 KiB) Viewed 3525 times


Looking at it today, it's still good. When 200 SMA is up and Stochastics is also up, only look for long trade. For short trade it's the opposite, obviously. So easy a caveman can do it :lol:

geico_caveman.03.jpg
geico_caveman.03.jpg (9.63 KiB) Viewed 3525 times
My threads

Patterns Observation
post148989#p148989

BONZ
post151670#p151670

MENTAL FORTIFICATION
post168148#p168148

Image

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1663
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby IgazI » Sun Oct 16, 2022 6:44 am

Don_xyZ wrote:One of the first few ideas introduced to me when starting out in the trading world.
The books said there are 2 categories in the indicator world, the lagging indicator and the leading indicator. So I combined them. Problem was, I didn't know where to take profit lolz

200 SMA and Stochastics 14, 3, 3.
MASt.png

MASt 2.png

Looking at it today, it's still good. When 200 SMA is up and Stochastics is also up, only look for long trade. For short trade it's the opposite, obviously. So easy a caveman can do it :lol:

geico_caveman.03.jpg


If it were not going on 3 am I'd take a look at it :(
I'll look into it todorrow :lol:
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
Don_xyZ
rank: 1000+ posts
rank: 1000+ posts
Posts: 1163
Joined: Tue Dec 14, 2010 9:15 am
Reputation: 1022
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby Don_xyZ » Thu Oct 27, 2022 11:06 am

TRO's Semafor 123 vanilla indicator. Where?
I know TRO had many versions of this indicator but I want to check the vanilla version that has nothing but the Semas and its alert.

Can someone help? Thanks a bunch!
My threads

Patterns Observation
post148989#p148989

BONZ
post151670#p151670

MENTAL FORTIFICATION
post168148#p168148

Image

User avatar
kiwiarian
rank: 500+ posts
rank: 500+ posts
Posts: 766
Joined: Thu Dec 23, 2021 8:15 am
Reputation: 455
Location: New Zealand
Gender: Male

Re: BONZ. Using technical indicators to trade.

Postby kiwiarian » Thu Oct 27, 2022 9:59 pm

Don_xyZ wrote:TRO's Semafor 123 vanilla indicator. Where?
I know TRO had many versions of this indicator but I want to check the vanilla version that has nothing but the Semas and its alert.

Can someone help? Thanks a bunch!

tro-3lzz.png
tro-3lzz.png (14.14 KiB) Viewed 3404 times

I am only aware of the free ones in his Mega Download pack 1350

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
kiwiarian
rank: 500+ posts
rank: 500+ posts
Posts: 766
Joined: Thu Dec 23, 2021 8:15 am
Reputation: 455
Location: New Zealand
Gender: Male

Re: BONZ. Using technical indicators to trade.

Postby kiwiarian » Thu Oct 27, 2022 11:06 pm

On DCHappys 123 thread at this page Tro posted a 123 indicator called tro_123
forex/simple-as-1-2-3-t2968/page30?hilit=dchappy

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1663
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby IgazI » Fri Oct 28, 2022 1:00 am

One thing to keep in mind when trading the 1-2-3 pattern is that the #2 point will always be the breakout. . .as in "THE" breakout.

So what you actually want to do is take most, say 2/3, of your contracts off at the #2 and hold the rest.

123-.jpg
123-.jpg (125.78 KiB) Viewed 3367 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
kiwiarian
rank: 500+ posts
rank: 500+ posts
Posts: 766
Joined: Thu Dec 23, 2021 8:15 am
Reputation: 455
Location: New Zealand
Gender: Male

Re: BONZ. Using technical indicators to trade.

Postby kiwiarian » Fri Oct 28, 2022 1:56 am

Will be interesting what you guys mention about using candles or other with the 123 (me quickly looking at DChappys Renko thread)

User avatar
kiwiarian
rank: 500+ posts
rank: 500+ posts
Posts: 766
Joined: Thu Dec 23, 2021 8:15 am
Reputation: 455
Location: New Zealand
Gender: Male

Re: BONZ. Using technical indicators to trade.

Postby kiwiarian » Fri Oct 28, 2022 2:24 am

IgazI wrote:One thing to keep in mind when trading the 1-2-3 pattern is that the #2 point will always be the breakout. . .as in "THE" breakout.

So what you actually want to do is take most, say 2/3, of your contracts off at the #2 and hold the rest.

123-.jpg


Are you talking about getting in at C and then when we are level with B doing a partial close and leaving a runner on at B as we go long?
123-Buy.png
123-Buy.png (24.66 KiB) Viewed 3343 times

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1663
Gender: None specified

Re: BONZ. Using technical indicators to trade.

Postby IgazI » Fri Oct 28, 2022 2:43 am

kiwiarian wrote:
IgazI wrote:One thing to keep in mind when trading the 1-2-3 pattern is that the #2 point will always be the breakout. . .as in "THE" breakout.

So what you actually want to do is take most, say 2/3, of your contracts off at the #2 and hold the rest.

123-.jpg


Are you talking about getting in at C and then when we are level with B doing a partial close and leaving a runner on at B as we go long?
123-Buy.png


yes.
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “beginners forum”