Digit Sum - NumerologyThis script calculates the digit sum of a chosen source.
Only possible thanks to MichelT String to Number Script.
SUM
VolSumGoogle Translation------------------------------------------------------------------------------------------------------------------------------------------
If the closing price is higher than the opening price, the volume is positive and reverse.
If the closing price is smaller than the opening price, the volume is negative and their defined period
It is an indicator that I thought that I would like to see how the shape changes compared to the price chart
when the sum of is calculated.
The white line is the sum of the output and the light blue line is the white line ema.
日本語---------------------------------------------------------------------------------------------------------------------------------------------------------
終値が始値より大きければ出来高をプラスに逆である終値が始値より小さければ出来高をマイナスにしそれらの定められた期間
の合計(sum)を出したら価格チャートと比較して形がどのように変化するか見てみたいと思い作ったインジケーターです。
白い線が出来高のsumで水色の線は白い線のemaになります。
Volume - Moving Sum (Quote Currency)This indicator shows a MOVING SUM of the QUOTE CURRENCY of the pair.
I made this because I wanted to be able to see how the 24HR volume looked on 1-Minute charts (which is why the default period is 1440, as there are 1440 minutes in a day.)
Impulses-1Lines "Total Up Impulses" and "Total Down Impulses" are the sum of impulses in the last n periods (Length).
line 1 => "Total Up Impulses": the sum of up impulses.
line 2 => "Total Down Impulses": the sum of down impulses.
When line 1 crosses up line 2, it indicates an uptrend is comming out.
When line 1 crosses down line 2, it indicates a downtrend is comming out.
Indicator IntegratorHere is a light piece of code, The Indicator Integrator. It sums up a function (like an integral for you calculus folks). Unlike the 'cum' function that does a million bars of look back you can change the look back period, like limits of integration.
Built in is a difference of the close from an SMA. And there is an ROC. By changing what is summed up in the loop you can sum up the differences from the SMA or sum up the ROC. Pick your SMA length/ROC length. Then pick your look back period of how much to add up (bars to add up). There is a built in SMA smoother of three bars on the final summation.
Comments welcomed