[SOC GEN] J'ai preque 100k sur mon banque en banque à 20 ANS

Bol2Glace5
2022-05-28 15:28:59

Le 28 mai 2022 à 15:28:13 :

Le 28 mai 2022 à 15:27:11 :
Tiens le prolo ça c’est de l’argent investi correctement :)

AYAAAAAA Je t'avais praise sur ton autre msg et tu me clashhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:27:23 :

Le 28 mai 2022 à 15:25:08 :

Le 28 mai 2022 à 15:24:13 :

Le 28 mai 2022 à 15:23:23 :

Le 28 mai 2022 à 15:23:02 :
Go bot de tradinghttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png
AlphaTrendStrategy ou Pivot Strategyhttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png

high frequency trading ou rienhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Bon écoute moi bien la débilehttps://image.noelshack.com/fichiers/2019/38/5/1568994938-1568976111-pascal-fume-2.png
Cite moi une stratégie de high frequency trading ?https://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png

aucune idée je fais tourner le script et ça trade avec mon argent non ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:24:25 :
Imagine tu all in crypto ayaaaa not ready golemy

AYAAAAAAAAAA Je rigole j'all in pas sur le luna je suis pas une gelemhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Voilà bien ce que je pensaishttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png
Donc écoute moi bien à partir de maintenanthttps://image.noelshack.com/fichiers/2019/24/1/1560145488-juste-une-derniere-chose.png
Tu vas prendre ça comme stratégie :

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Bol2Glace

mailto://@version=5
strategy("PivotStrategy", overlay = true, max_lines_count = 500, max_labels_count = 500)
timeframe = input.timeframe(defval = '240')
leftBars = input.int(defval = 2, title = "Left Bars", minval = 1)
rightBars = input.int(defval = 2, title = "Right Bars", minval = 1)
phlinecol = input.color(defval = color.lime, title = "Pivot High/Low Line Colors", inline = "lc")
pllinecol = input.color(defval = color.red, title = "", inline = "lc")
phbgcol = input.color(defval = color.lime, title = "Pivot High BG/Text Colors", inline = "ph")
phtextcol = input.color(defval = color.black, title = "", inline = "ph")
plbgcol = input.color(defval = color.red, title = "Pivot Low BG/Text Colors", inline = "pl")
pltextcol = input.color(defval = color.white, title = "", inline = "pl")

get_phpl()=>
float ph = ta.pivothigh(leftBars, rightBars)
float pl = ta.pivotlow(leftBars, rightBars)
phtimestart = ph ? time[rightBars] : na
phtimeend = ph ? time[rightBars - 1] : na
pltimestart = pl ? time[rightBars] : na
pltimeend = pl ? time[rightBars - 1] : na

[ph, phtimestart, phtimeend, pl, pltimestart, pltimeend]

// get if there if Pivot High/low and their start/end times
[ph, phtimestart, phtimeend, pl, pltimestart, pltimeend] = request.security(syminfo.tickerid, timeframe, get_phpl(), lookahead = barmerge.lookahead_on)

// keep time of each bars, this is used for lines/labels
var mytime = array.new_int(0)
array.unshift(mytime, time)

// calculate end time
bhend = array.get(mytime, math.min(array.indexof(mytime, phtimeend) + 1, array.size(mytime) - 1))
blend = array.get(mytime, math.min(array.indexof(mytime, pltimeend) + 1, array.size(mytime) - 1))

var float pivothigh = na
var float pivotlow = na
// draw once
pivothigh := na(ph[1]) and ph ? ph :
not na(ph[1]) and na(ph) ? na :
na
pivotlow := na(pl[1]) and pl ? pl :
not na(pl[1]) and na(pl) ? na :
na

width = (ta.highest(300) - ta.lowest(300)) / 50
if not na(pivothigh)
line.new(x1 = phtimestart, y1 = pivothigh, x2 = bhend, y2 = pivothigh, color = phlinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = phtimestart, y1 = pivothigh, x2 = phtimestart, y2 = pivothigh + width, color = phlinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = bhend, y1 = pivothigh, x2 = bhend, y2 = pivothigh + width, color = phlinecol, xloc = xloc.bar_time, width = 2)
label.new(x = (phtimestart + bhend) / 2, y = pivothigh + width,
text = str.tostring(math.round_to_mintick(pivothigh)),
color = phbgcol,
textcolor = phtextcol,
xloc = xloc.bar_time)

if not na(pivotlow)

line.new(x1 = pltimestart, y1 = pivotlow, x2 = blend, y2 = pivotlow, color = pllinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = pltimestart, y1 = pivotlow, x2 = pltimestart, y2 = pivotlow - width, color = pllinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = blend, y1 = pivotlow, x2 = blend, y2 = pivotlow - width, color = pllinecol, xloc = xloc.bar_time, width = 2)
label.new(x = (pltimestart + blend) / 2, y = pivotlow - width,
text = str.tostring(math.round_to_mintick(pivotlow)),
color = plbgcol,
textcolor = pltextcol,
style = label.style_label_up,
xloc = xloc.bar_time)

//strategy
if not na(pivotlow)
strategy.entry("Long", strategy.long, comment="LONG")
if not na(pivothigh)
strategy.entry("Short", strategy.short, comment="SHORT")

+ levier x20, et tu trades le NASDAQ, bonne chance l'AWhttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

Si j'attends le milion je te reverse 50% nofakehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Si t'avais trade le NASDAQ levier x20 avec cette stratégie depuis le 10 Mai, t'aurais fait un x6https://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

nynovac
2022-05-28 15:29:18

Origine de l'argent ? :)

FinduYaliKuga13
2022-05-28 15:29:29

Le 28 mai 2022 à 15:27:29 :

Le 28 mai 2022 à 15:26:42 :
Donne moi 10€ paypal, MP moi

pourquoi faire si t'as une bonen raison je te dépannehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:26:54 :
https://image.noelshack.com/fichiers/2022/21/6/1653744379-c4bb03e8-2fc3-406b-9583-1d0a671bea3d.png

ayaa bg ça donen des tips pour tradehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Pour acheter une nouvelle caisse

Jinsoul_MENHERA
2022-05-28 15:29:40

Le 28 mai 2022 à 15:28:36 :

Le 28 mai 2022 à 15:25:56 :

Le 28 mai 2022 à 15:25:35 :

Le 28 mai 2022 à 15:24:33 :

Le 28 mai 2022 à 15:22:21 :
Non c'est pas bien d'avoir 100K uniquement sur son compte bancaire, et c'est pas ironique. Ca ne sert à rien, il dort sans travailler.

Et mettre tout en crypto, la sélection sera naturelle

Faut go quoi du coup ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif
J'ai zappé mes cours de financehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Inflation, tu perds 2% de pouvoir d'achat par an

Justement je go investir làhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Fait un projet, mais le mieux c'est de l'investir dans de la pierre en premier et en faisant un prêt c'est plus intéressant, car tu gardes une capacité d'investissement.

Y'a trop de loins chelou pour investir dans la pierre et louer j'y comprends rienhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif
seconde résidence t'as des intérets en moins niveau taxe ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

EauMineral
2022-05-28 15:29:44

Ou go investissement dans la pierre si tu peux emprunter

Bol2Glace5
2022-05-28 15:29:53

Le 28 mai 2022 à 15:29:18 :
Origine de l'argent ? :)

Escortinghttps://image.noelshack.com/fichiers/2016/48/1480464161-1475850246-1474559309-picsart-09-23-05-14-59.jpg

Jinsoul_MENHERA
2022-05-28 15:30:15

Le 28 mai 2022 à 15:29:18 :
Origine de l'argent ? :)

Parents

Le 28 mai 2022 à 15:28:59 :

Le 28 mai 2022 à 15:28:13 :

Le 28 mai 2022 à 15:27:11 :
Tiens le prolo ça c’est de l’argent investi correctement :)

AYAAAAAA Je t'avais praise sur ton autre msg et tu me clashhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:27:23 :

Le 28 mai 2022 à 15:25:08 :

Le 28 mai 2022 à 15:24:13 :

Le 28 mai 2022 à 15:23:23 :

Le 28 mai 2022 à 15:23:02 :
Go bot de tradinghttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png
AlphaTrendStrategy ou Pivot Strategyhttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png

high frequency trading ou rienhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Bon écoute moi bien la débilehttps://image.noelshack.com/fichiers/2019/38/5/1568994938-1568976111-pascal-fume-2.png
Cite moi une stratégie de high frequency trading ?https://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png

aucune idée je fais tourner le script et ça trade avec mon argent non ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:24:25 :
Imagine tu all in crypto ayaaaa not ready golemy

AYAAAAAAAAAA Je rigole j'all in pas sur le luna je suis pas une gelemhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Voilà bien ce que je pensaishttps://image.noelshack.com/fichiers/2016/50/1482071979-bridgely-jesus-sansfond.png
Donc écoute moi bien à partir de maintenanthttps://image.noelshack.com/fichiers/2019/24/1/1560145488-juste-une-derniere-chose.png
Tu vas prendre ça comme stratégie :

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Bol2Glace

mailto://@version=5
strategy("PivotStrategy", overlay = true, max_lines_count = 500, max_labels_count = 500)
timeframe = input.timeframe(defval = '240')
leftBars = input.int(defval = 2, title = "Left Bars", minval = 1)
rightBars = input.int(defval = 2, title = "Right Bars", minval = 1)
phlinecol = input.color(defval = color.lime, title = "Pivot High/Low Line Colors", inline = "lc")
pllinecol = input.color(defval = color.red, title = "", inline = "lc")
phbgcol = input.color(defval = color.lime, title = "Pivot High BG/Text Colors", inline = "ph")
phtextcol = input.color(defval = color.black, title = "", inline = "ph")
plbgcol = input.color(defval = color.red, title = "Pivot Low BG/Text Colors", inline = "pl")
pltextcol = input.color(defval = color.white, title = "", inline = "pl")

get_phpl()=>
float ph = ta.pivothigh(leftBars, rightBars)
float pl = ta.pivotlow(leftBars, rightBars)
phtimestart = ph ? time[rightBars] : na
phtimeend = ph ? time[rightBars - 1] : na
pltimestart = pl ? time[rightBars] : na
pltimeend = pl ? time[rightBars - 1] : na

[ph, phtimestart, phtimeend, pl, pltimestart, pltimeend]

// get if there if Pivot High/low and their start/end times
[ph, phtimestart, phtimeend, pl, pltimestart, pltimeend] = request.security(syminfo.tickerid, timeframe, get_phpl(), lookahead = barmerge.lookahead_on)

// keep time of each bars, this is used for lines/labels
var mytime = array.new_int(0)
array.unshift(mytime, time)

// calculate end time
bhend = array.get(mytime, math.min(array.indexof(mytime, phtimeend) + 1, array.size(mytime) - 1))
blend = array.get(mytime, math.min(array.indexof(mytime, pltimeend) + 1, array.size(mytime) - 1))

var float pivothigh = na
var float pivotlow = na
// draw once
pivothigh := na(ph[1]) and ph ? ph :
not na(ph[1]) and na(ph) ? na :
na
pivotlow := na(pl[1]) and pl ? pl :
not na(pl[1]) and na(pl) ? na :
na

width = (ta.highest(300) - ta.lowest(300)) / 50
if not na(pivothigh)
line.new(x1 = phtimestart, y1 = pivothigh, x2 = bhend, y2 = pivothigh, color = phlinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = phtimestart, y1 = pivothigh, x2 = phtimestart, y2 = pivothigh + width, color = phlinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = bhend, y1 = pivothigh, x2 = bhend, y2 = pivothigh + width, color = phlinecol, xloc = xloc.bar_time, width = 2)
label.new(x = (phtimestart + bhend) / 2, y = pivothigh + width,
text = str.tostring(math.round_to_mintick(pivothigh)),
color = phbgcol,
textcolor = phtextcol,
xloc = xloc.bar_time)

if not na(pivotlow)

line.new(x1 = pltimestart, y1 = pivotlow, x2 = blend, y2 = pivotlow, color = pllinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = pltimestart, y1 = pivotlow, x2 = pltimestart, y2 = pivotlow - width, color = pllinecol, xloc = xloc.bar_time, width = 2)
line.new(x1 = blend, y1 = pivotlow, x2 = blend, y2 = pivotlow - width, color = pllinecol, xloc = xloc.bar_time, width = 2)
label.new(x = (pltimestart + blend) / 2, y = pivotlow - width,
text = str.tostring(math.round_to_mintick(pivotlow)),
color = plbgcol,
textcolor = pltextcol,
style = label.style_label_up,
xloc = xloc.bar_time)

//strategy
if not na(pivotlow)
strategy.entry("Long", strategy.long, comment="LONG")
if not na(pivothigh)
strategy.entry("Short", strategy.short, comment="SHORT")

+ levier x20, et tu trades le NASDAQ, bonne chance l'AWhttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

Si j'attends le milion je te reverse 50% nofakehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Si t'avais trade le NASDAQ levier x20 avec cette stratégie depuis le 10 Mai, t'aurais fait un x6https://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

J'ai loupé le train tel une gelemhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif
Si je mets tout dans des actions netflix je go million vu que c'est -80% là ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Jinsoul_MENHERA
2022-05-28 15:30:42

Le 28 mai 2022 à 15:29:53 :

Le 28 mai 2022 à 15:29:18 :
Origine de l'argent ? :)

Escortinghttps://image.noelshack.com/fichiers/2016/48/1480464161-1475850246-1474559309-picsart-09-23-05-14-59.jpg

AYAAAAAAAAAAAhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:29:44 :
Ou go investissement dans la pierre si tu peux emprunter

Je peux pas empreunter car l'argent vient de mes parents je suis étudiantehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Total-Bourse
2022-05-28 15:31:20

Ayaaaa désolé clé j’ai clash alors que tu parles d’investir et que tu m’as répondu tranquille, je vais aller clash les prolos du topic plutôt

Steinhertz
2022-05-28 15:32:27

Pose ce pistolet jinsoul

Ray_man24
2022-05-28 15:32:35

Jinsoul la rentière
https://image.noelshack.com/fichiers/2018/40/2/1538464049-ahibol.png

Jean_Otus
2022-05-28 15:32:40

Le 28 mai 2022 à 15:26:54 :
https://image.noelshack.com/fichiers/2022/21/6/1653744379-c4bb03e8-2fc3-406b-9583-1d0a671bea3d.png

ahii ce portefeuille de méga boomer

Bol2Glace5
2022-05-28 15:32:42

J'ai loupé le train tel une gelemhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif
Si je mets tout dans des actions netflix je go million vu que c'est -80% là ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Tu trade le NASDAQ et tu laisses le bot fairehttps://image.noelshack.com/fichiers/2016/47/1480093643-1469484907-risitas-cigare.png

Jinsoul_MENHERA
2022-05-28 15:32:44

Le 28 mai 2022 à 15:31:20 :
Ayaaaa désolé clé j’ai clash alors que tu parles d’investir et que tu m’as répondu tranquille, je vais aller clash les prolos du topic plutôt

Ayaa je cherche sur des conseils kheyous, en plus t'as l'air de t'y connaitrehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Jinsoul_MENHERA
2022-05-28 15:33:12

Le 28 mai 2022 à 15:28:49 :
Tu as fait quoi comme travail pour avoir ces 100k ?

Etudiantehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Bol2Glace5
2022-05-28 15:33:16

Par contre j'ai oublié de mettre un stop loss dans le scripthttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

Ray_man24
2022-05-28 15:33:23

Jinsoul la rentière
https://image.noelshack.com/fichiers/2018/40/2/1538464049-ahibol.png

Total-Bourse
2022-05-28 15:33:39

Le portefeuille de boomer qui me permets d’avoir ton RSA annuel en dividende sans bouger de chez moi, et toi le golem ? Ton all in sur Luna s’est bien passé ? :)

Jinsoul_MENHERA
2022-05-28 15:34:00

Le 28 mai 2022 à 15:32:27 :
Pose ce pistolet jinsoul

Je pose çahttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:32:40 :

Le 28 mai 2022 à 15:26:54 :
https://image.noelshack.com/fichiers/2022/21/6/1653744379-c4bb03e8-2fc3-406b-9583-1d0a671bea3d.png

ahii ce portefeuille de méga boomer

c'est un géniehttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:32:35 :
Jinsoul la rentière
https://image.noelshack.com/fichiers/2018/40/2/1538464049-ahibol.png

hélas non j'ai 0 propriétés ça comate dans mon compte bancaire à la soc genhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Jinsoul_MENHERA
2022-05-28 15:34:24

Le 28 mai 2022 à 15:33:16 :
Par contre j'ai oublié de mettre un stop loss dans le scripthttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

naturelle pour toi quand le market va crash et go -90% à cause du monkeypoxhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Infos
Gestion du forum

contact@geevey.com

API disponible. Utilisez le paramètre "api" en GET, peu importe le contenu, sur une page du site.

Notes

    Partenaire: JVFlux
    Ce site n'est pas associé à Jeuxvideo.com ou Webedia. Nous utilisons seulement des archives publiques.
    Il est inutile de me spammer par e-mail pour supprimer un topic. Au contraire, en conséquence, je mettrais votre topic dans le bloc ci-dessous.
Non-assumage
    Personne n'a pas assumé de topic pour le moment.