First, the bases of this chart:
what is multibit:
its a way to transmit 16 bools from one indicator to the next, based on the library
this is called daisy chaining, so to use that stuff u need at least a TV-pro+ license, but i would recommend
premium, as you also have more data to analyze

here you see how its basically looking, x8 can do 8 channels, starting from the bottom which is 0 to the
top which is channel 7
what is a classic signal:
its a signal for daisy chaining based on a trigger line which can do -1, 0, +1 for short,long, neutral

What to see in that Idea:
5 indicators chained into a row which are finally a combined to a strategy
[Mad] almost Nadaraya-watson -- configured to deliver classic signal on cross-inside
--> to Digitalsignal plot
[Mad MBS] x8 L3 Processor -- configured to convert a classic to a multibit to channel 0(L),1(S)
--> to Multibit plot
[Mad MBS] L1 L2 RSI -- configured to deliver a multibit signal on channel 2(oversold),3(overb.)
--> to Multibit plot
all the data is now into the daisychain multibit link (so channel 0 1 2 3 used)
[Mad MBS] x8 L3 Processor --
here a lot more of the magic begins:
MDB: channel 0 to ch. 0 (filtering small moves (+-4%)
MDB: channel 1 to ch. 1 (filtering small moves (+-4%)
TON: channel 2 to ch. 4 prolonging 2 by 10 bars
TON: channel 3 to ch. 5 prolonging 2 by 10 bars
AND: channel 0 and 4 to channel 6
AND: channel 1 and 5 to channel 7
finaly its configured to send out a classic signal from channel 6 and 7 -> 6 is +1 7 is a -1 else 0
--> to Digitalsignal plot
you can now do alarms on the x8 processor Digitalsignal (trigger above and below 0 for long short)

FINISHED, OR:
[Mad] L5 Backtest MK5.5
grabbs the x8 processor (Digitalsignal) and does the risk management and does its magic
with the settings in the indicator
--> delivers alarms how the position gets managed with a alarmmessage
{{strategy.order.alert_message}} in the alarmconfig,
than you get the custom texts from the module

Functions inside the x8 Processor (you can read the signaltranscoder library for more details)
And and condition - 1 2 or 3 signals to on channel line 2 output channel
Or condition - 1 2 or 3 signals to on channel line 2 output channel
XOR, XAND, NAND, NOR (this are basic Logic combiners)
TON - wants a signal over a minumum selectable length to let it pass
TOF - prolongs a signal by length selected
next 2 are little bit more tricky
MDP (MinimumPercentagePromille)
- only lets pass a signal if it minimum grows or shrinks xxxx promile
Parameters: would be: 1=Input, 2= 950(5% shrink), 3= 1050(5% grow)
4=outputchannel 5= MDP
RATE - wants a amount of signals in a defined length
Parameters: 1= input, 2= candleamount, 3= minimum count
4= output 5= RATE
that list are most functions a strategy uses, so you can combine more indicators in a row without the need to code around every time you wanna try something.
There are now several multibit indicators out in the wild from me, each of my indicators which i touch again or update will be compatible. at least for Level 1 Indicators i do a 1,0 -1 Classic signal which a x8 can turn into a multibit very quicky.
a implementation reference code you can see here:
![[Mad] Pivots HL-Trend](https://s3.tradingview.com/e/efyRhcwR_mid.png)
at the bottom of the script, both versions, classic and multibit
have fun
what is multibit:
its a way to transmit 16 bools from one indicator to the next, based on the library

this is called daisy chaining, so to use that stuff u need at least a TV-pro+ license, but i would recommend
premium, as you also have more data to analyze
here you see how its basically looking, x8 can do 8 channels, starting from the bottom which is 0 to the
top which is channel 7
what is a classic signal:
its a signal for daisy chaining based on a trigger line which can do -1, 0, +1 for short,long, neutral
What to see in that Idea:
5 indicators chained into a row which are finally a combined to a strategy
[Mad] almost Nadaraya-watson -- configured to deliver classic signal on cross-inside
--> to Digitalsignal plot
[Mad MBS] x8 L3 Processor -- configured to convert a classic to a multibit to channel 0(L),1(S)
--> to Multibit plot
[Mad MBS] L1 L2 RSI -- configured to deliver a multibit signal on channel 2(oversold),3(overb.)
--> to Multibit plot
all the data is now into the daisychain multibit link (so channel 0 1 2 3 used)
[Mad MBS] x8 L3 Processor --
here a lot more of the magic begins:
MDB: channel 0 to ch. 0 (filtering small moves (+-4%)
MDB: channel 1 to ch. 1 (filtering small moves (+-4%)
TON: channel 2 to ch. 4 prolonging 2 by 10 bars
TON: channel 3 to ch. 5 prolonging 2 by 10 bars
AND: channel 0 and 4 to channel 6
AND: channel 1 and 5 to channel 7
finaly its configured to send out a classic signal from channel 6 and 7 -> 6 is +1 7 is a -1 else 0
--> to Digitalsignal plot
you can now do alarms on the x8 processor Digitalsignal (trigger above and below 0 for long short)
FINISHED, OR:
[Mad] L5 Backtest MK5.5
grabbs the x8 processor (Digitalsignal) and does the risk management and does its magic
with the settings in the indicator
--> delivers alarms how the position gets managed with a alarmmessage
{{strategy.order.alert_message}} in the alarmconfig,
than you get the custom texts from the module
Functions inside the x8 Processor (you can read the signaltranscoder library for more details)
And and condition - 1 2 or 3 signals to on channel line 2 output channel
Or condition - 1 2 or 3 signals to on channel line 2 output channel
XOR, XAND, NAND, NOR (this are basic Logic combiners)
TON - wants a signal over a minumum selectable length to let it pass
TOF - prolongs a signal by length selected
next 2 are little bit more tricky
MDP (MinimumPercentagePromille)
- only lets pass a signal if it minimum grows or shrinks xxxx promile
Parameters: would be: 1=Input, 2= 950(5% shrink), 3= 1050(5% grow)
4=outputchannel 5= MDP
RATE - wants a amount of signals in a defined length
Parameters: 1= input, 2= candleamount, 3= minimum count
4= output 5= RATE
that list are most functions a strategy uses, so you can combine more indicators in a row without the need to code around every time you wanna try something.
There are now several multibit indicators out in the wild from me, each of my indicators which i touch again or update will be compatible. at least for Level 1 Indicators i do a 1,0 -1 Classic signal which a x8 can turn into a multibit very quicky.
a implementation reference code you can see here:
![[Mad] Pivots HL-Trend](https://s3.tradingview.com/e/efyRhcwR_mid.png)
at the bottom of the script, both versions, classic and multibit
have fun
Anmerkung
![[MAD MBS] Multibit Alert on Chart](https://s3.tradingview.com/a/AfSyo5yf_mid.png)
With this script here you can directly place alarms on the chart by selecting a Channel which needs to be displayed.
additionally you can create alarms directly on each of the 16 Channel lines
example: 2x BBx3 Script here to x8 and from there plot he alerts on the chart...
basicially you can do some "and, ors, TOF,..:" and display the result
Anmerkung
Multibit enabled Playtoys:Processors
![[MAD MBS] L3 Processor x8](https://s3.tradingview.com/2/2XCihL3n_mid.png)
![[MAD MBS] L4 Processor x16](https://s3.tradingview.com/3/3s3Ys5B3_mid.png)
Basis Output at Chart
![[MAD MBS] Multibit Alert on Chart](https://s3.tradingview.com/a/AfSyo5yf_mid.png)
Riskmanagement Multibit
![[MAD MBS] L5 RiskManagement](https://s3.tradingview.com/f/fgDuY962_mid.png)
Riskmanagement Free edition (DigitalSignal from x8 x16 only)
![[MAD] Level5 Backtest MK5.5](https://s3.tradingview.com/x/XCs6XqLX_mid.png)
Trends
![[MAD] Trigonometric Trend](https://s3.tradingview.com/m/mahGjIJ1_mid.png)
![[Mad] Pivots HL-Trend](https://s3.tradingview.com/e/efyRhcwR_mid.png)
![[Mad]Trend Barcolors](https://s3.tradingview.com/n/N6dCuJOy_mid.png)
RSI:
![[MAD MBS] L1 L2 RSI](https://s3.tradingview.com/y/yKCcq1zb_mid.png)
not cleaned up
Clouds:
![[MAD] almost Nadaraya-Watson Envelope](https://s3.tradingview.com/m/mLV7b2dD_mid.png)
![[Mad] Triple Bollinger Bands MTF](https://s3.tradingview.com/j/JBllIVSl_mid.png)
Level 1 - Manual Entrys:
![[Mad] L4 Entryboxes](https://s3.tradingview.com/j/jRvhWS7X_mid.png)
djmad|Bitblockart
Haftungsausschluss
Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.
djmad|Bitblockart
Haftungsausschluss
Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.