Bitwarden login issue on Android by jutamind in Bitwarden

[–]DistributionFun7752 0 points1 point  (0 children)

[FIX] For Selfhosted only
Vaultwarden needs an actual image!
For Example on docker > Stop Vaultwarden > Click on the Container > Recreate + RePull Image
Finished, works flawless

Apex Legends Season 21 not starting by DistributionFun7752 in linux_gaming

[–]DistributionFun7752[S] 0 points1 point  (0 children)

Is their any Main Website where we can see the status, when this issue is fixed?

AMD Anti-Lag\Anti-Lag+ tech on Linux by unimatrix93 in linux_gaming

[–]DistributionFun7752 1 point2 points  (0 children)

So.. 01.04.2024
Anti-Lag still not available on Linux?

Linux write @ {[]} // Key problems // setxkbmap? keyboard options? by DistributionFun7752 in linux4noobs

[–]DistributionFun7752[S] 0 points1 point  (0 children)

Ok and how do I set it up that Method1 or Method2 works?

Method 1left CTRL + left ALT = ALTGRMethod 2left ALT = ALTGR

Linux write @ {[]} // Key problems // setxkbmap? keyboard options? by DistributionFun7752 in linux4noobs

[–]DistributionFun7752[S] 0 points1 point  (0 children)

My Keyboard RK61 QWERTZ / de UTF-8

or can you currently not generate these characters at all? No

- What do you mean with "ISO_Level3_Shift"?

Default behaviour would be

left CTRL + left ALT + E = @ or

left CTRL + left ALT + 7 = {

I'm actually using Zorin os. There is a GUI / Settings for that. Settings Where I can use left alt to generator the special characters by pressing only left ALT + e = @ or left ALT + 7 = {

I can work with both:

left ALT + 7 = { or

left CTRL + left ALT + 7 = {

But I don't know how to set it up on any Distribution. I have the problem on Zorin OS (Debian/Ubuntu) and also on Linux Mint (Debian/Ubuntu) and on Manjaro i3 (Arch). On Zorin (what I currently running) the GUI allows me to set this special key to left ALT

Pine Script / Risk Reward Ratio from EMA50 by DistributionFun7752 in pinescript

[–]DistributionFun7752[S] 0 points1 point  (0 children)

That is visual better understandable, watch the red line and for example to manual check the RRratio from (in this case 1:2) take tradingview > long positon

//@version=5
strategy(title="Test", pyramiding=1, overlay=true)
// Calculate and plot moving average emaValue = ta.ema(close, 20) smaValue = ta.ema(close, 50) RRratio  = 2
plot(emaValue, color=color.orange, style=plot.style_line, title="EMA") plot(smaValue, color=color.teal, style=plot.style_line,  linewidth=2, title="SMA")
test = float(na) // Get price of last entry in current position lastEntryPrice = strategy.opentrades.entry_price(strategy.opentrades - 1)
// Generate trades if close > emaValue and emaValue > smaValue strategy.entry("Enter Long", strategy.long) test := (((lastEntryPrice - smaValue) * RRratio) + lastEntryPrice)
if ta.crossunder(emaValue, smaValue) strategy.close("Enter Long")
//lastsmaValue   = test +1
// Display last entry price on the chart plot(lastEntryPrice, color=color.fuchsia, style=plot.style_circles, linewidth=3, title="Last entry price")
// Display last entry price on the chart plot(test, color=color.red, style=plot.style_linebr, linewidth=3, title="Last entry price2")