[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/biz/ - Business & Finance

Search:


View post   

>> No.11051453 [View]
File: 86 KB, 1415x658, shekel flow.png [View same] [iqdb] [saucenao] [google]
11051453

>>11051340
im glad the shekel flow ended up in such competent hands

>> No.10385158 [View]
File: 86 KB, 1415x658, shekel flow.png [View same] [iqdb] [saucenao] [google]
10385158

>>10385059
>>10385059
this desu senpai

https://pastebin.com/JF5csSSf

put them each in tradingview pine editor and overlay em

>> No.10350283 [View]
File: 86 KB, 1415x658, shekel flow.png [View same] [iqdb] [saucenao] [google]
10350283

>>10350106
holy shit i hate candle patterns.
ive never had anything lie straight to my face more than just flat out price action.

though ill admit i consider them along other things when im looking at daily/weekly charts

>>10347704
the shekel flow

>> No.10310201 [View]
File: 86 KB, 1415x658, shekel flow.png [View same] [iqdb] [saucenao] [google]
10310201

>>10310118
>Just copy parts of some people strat or I can help you too
thats what i was gonna do, but wanted to see if you knew of anything.

i managed to get the basics down somewhat on the actual writing of the indicators.
check out my new indicator: the shekel flow.
its basically a chaikin money flow indicator, but it has inputs so you can average the volume out over a few bars so that gaps up and down dont screw it up

///
study("shekel flow", scale=scale.right)
nigger = input(defval=16, title='period length', minval=5, maxval=42)
fag = input(defval=2, title='gap adjust period', minval=1, maxval=10)
clo = sum(close, fag)
lo = sum(low, fag)
hi = sum(high, fag)
clov = clo / fag
lov = lo / fag
hiv = hi / fag
clow = clov - lov
hicx = hiv - clov
hlox = hiv - lov
clic = clow - hicx
mfm = clic / hlox
vol = sum(volume, fag)
volk = vol / fag
mfv = mfm * volk
mfmx = sum(mfm, nigger)
mfvx = sum(volk, nigger)
sf = mfmx / mfvx
sfx = sf * 1000000
cond = sfx > 0
plot(sfx, title="shekel flow", color=(cond ? #22FD00 : #FD0000), style=histogram, linewidth=2)
///

>> No.10284781 [View]
File: 86 KB, 1415x658, shekel flow.png [View same] [iqdb] [saucenao] [google]
10284781

guise
check it out
i fixed the chaikin money flow. normally it has problems with gaps up and down. if theres too many gaps in price/direction it can get out of sync w itself. so i decided to add some inputs. now you can adjust how many periods you want to average out the variables with.

--------------------------------------------------
//@version=3
study("shekel flow")
nigger = input(defval=16, title='period length', minval=5, maxval=42)
fag = input(defval=2, title='gap adjust period', minval=1, maxval=10)
clo = sum(close, fag)
lo = sum(low, fag)
hi = sum(high, fag)
clov = clo / fag
lov = lo / fag
hiv = hi / fag
clow = clov - lov
hicx = hiv - clov
hlox = hiv - lov
clic = clow - hicx
mfm = clic / hlox
vol = sum(volume, fag)
volk = vol / fag
mfv = mfm * volk
mfmx = sum(mfm, nigger)
mfvx = sum(volk, nigger)
sf = mfmx / mfvx
sfx = sf * 1000000
cond = sfx > 0
plot(sfx, title="shekel flow", color=(cond ? #22FD00 : #FD0000), style=histogram, linewidth=2)
--------------------------------------------------

this stuffs not that hard desu senpai

give me more retarded meme indicator ideas to try and make senpaitachi

Navigation
View posts[+24][+48][+96]