Page 3 of 9

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 12:35 am
by Jedidiah
Banzai wrote: Wed Jun 08, 2022 11:50 pm

for June 8th, 2022

Currency indicator is over here:
viewtopic.php?p=1295479203#p1295479203
Metrics for this youtuber sale. Obviously, it's a scam. .

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 1:39 am
by Knight
Banzai wrote: Wed Jun 01, 2022 4:47 pm



Mebius version 3 is out. Hmm!

For version 1, go here:
viewtopic.php?p=1295402365#p1295402365
Image
Hello, Please where can we get version 3 for testing.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 2:53 am
by Banzai
Knight wrote: Thu Jun 09, 2022 1:39 am Hello, Please where can we get version 3 for testing.
Just like honje19960321 said from the above post, it's a scam.
Metrics for this youtuber sale. Obviously, it's a scam. .

Look like it's a moving average crossover.
We have a lot of Moving Average indicators in this forum.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 2:56 am
by Banzai
honje19960321 wrote: Thu Jun 09, 2022 12:27 am Banzai,Do you understand Japanese? :mistake:
Uh no, I don't know Japanese.
I'm American. But I do like anime and manga.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 3:25 am
by Knight
Banzai wrote: Thu Jun 09, 2022 2:56 am Uh no, I don't know Japanese.
I'm American. But I do like anime and manga.
Lmao I'm Nigerian, and I do love Anime and Manga too.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 09, 2022 3:37 am
by Jedidiah
Banzai wrote: Thu Jun 09, 2022 2:56 am Uh no, I don't know Japanese.
I'm American. But I do like anime and manga.
haha I like it too.
This new anime,
Ya Boy Kongming!, is very popular in Japan recently.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Thu Jun 16, 2022 12:41 am
by Banzai
Coming Soon!

Plot the "ikokukunomatome" indicator on the main chart.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Wed Jul 06, 2022 4:16 am
by Banzai
I'm starting to like Bollinger Bands.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Wed Jul 06, 2022 8:21 am
by Banzai

Code: Select all

//PRC_Logistic Oscillators | indicator
//05.03.2021
//Nicolas @ www.prorealcode.com
//Sharing ProRealTime knowledge
//converted from pinescript 
 
// --- settings 
ti         = 0 //0=Awesome Oscillator (AO),1=Rate of Change (ROC),2=Relative Strength Index (RSI),3= Stochastic (STOCH)
length     = 13
lenROC     = 9 //Length : Rate of Change (ROC)
lenRSI     = 14 //Length : Relative Strength Index (RSI)
lenSTO     = 14 //Length : Stochastic (STOCH)
// --- end of settings 
 
source     = customclose
 
if barindex>length then 
 
if ti = 0 then
rr = average[5](medianprice)/average[34](medianprice)-1
elsif ti=1 then 
rr = (source-source[lenROC])/source[lenROC]
elsif ti=2 then 
rr = rsi[lenRSI](source)/100-.5
elsif ti=3 then 
rr = 100*(source-lowest[lensto](low))/(highest[lensto](high)-lowest[lensto](low))/100-.5
endif
 
mapeq = rr*source / highest[length](high)*(1-source/highest[length](high))
lmap = mapeq*1000000
sum = 0
for i = 1 to 30
lmap = (rr * abs(mapeq[i]) * (1 - mapeq[i]))*1000000
sum=sum+lmap
$v[i]=lmap
next
avg = sum/30
 
for j = 1 to 30
if avg>0 then
r=0
g=255
else
r=255
g=0
endif
drawtext("●",barindex,$v[j],dialog,standard,5) coloured(r,g,0,70)
next
 
if avg>0 then 
ar=0
ag=255
else
ar=255
ag=0
endif
endif
 
return 0 coloured(100,100,100,0),lmap coloured(100,100,100,0),avg coloured(ar,ag,0) style(line,3) as "average"
Kewl ! Logistic Oscillators indicator.

Re: Banzai Stuffs: backtestings, forex notes, etc...

Posted: Tue Jun 06, 2023 9:17 am
by Banzai
I'm still learning the jargon of ICT concept.
For June 5th, 2023.