Messages de Jinsoul_MENHERA

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

Le 28 mai 2022 à 15:27:27 :
ben t'es un bosseur c'est bien... je te dirais bien continuer à épargner comme ça quelques années pour payer une maison cash et être tranquille.

Pas vraiment j'économise l'argent que mes parents m'nevoienthttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif
j'achète Rhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

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

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

Le 28 mai 2022 à 15:26:40 :
Tu dépannes 0.2 BNB pour les courses stp ? :(

c'est combien en USD ça ?https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:25:52 :
Éclaté sale prolo, l’argent non placé et de l’argent perdu

AYAAA Je sais justement je veux le placer mon argent de gelemhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

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

Le 28 mai 2022 à 15:25:06 :
Fait un prêt d'un million pour des logements le low, dans 25 ans max t'es millionaire.

je peux pas go prêt d'un million je suis étudiante l'argent vient de mes parentshttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

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

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

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

Le 28 mai 2022 à 15:22:05 :
Oui oui go mettre dans les crypto et dans une semaine tu reviens nous dire à combien tu es ? 🙂

Le million dans un moishttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:21:48 :
All in Luna :ok:

ça a crash de fou ce scam ponzi on peut meme plus en acheterhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:21:08 :

Le 28 mai 2022 à 15:20:43 :

Le 28 mai 2022 à 15:20:31 :
Bidehttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

Merci de m'avoir up j'aurais bidé sinonhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Très mauvaise idée de tout foutre dans la cryptohttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

c'est le DIP là faut all in
https://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:21:00 :
Tu viens d'apprendre le html et tu as modifié les chiffres celestin

AYAAAAAA Premier gelem ragix au RSAhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:16:19 :

Le 28 mai 2022 à 15:14:42 :

Le 28 mai 2022 à 15:14:20 :

Le 28 mai 2022 à 15:11:48 :
Mais c'est pas le vrais Jinsoul les gars :rire:

Ahi le vrai jinsoul n'existe pas not readyhttps://image.noelshack.com/fichiers/2021/50/6/1639796273-8fc521cb-1ed2-4c74-bb21-53f4bca927e3.png

Si c'est bel et bien moihttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

Tous les messages que tu dis depuis le début ne correspondent absolument pas à notre PDF sur Jinsoul et puis tu n'écris pas de la même façon que lui.

AYAAAAAAAAAAA LE PDFhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

Le 28 mai 2022 à 15:20:31 :
Bidehttps://image.noelshack.com/fichiers/2017/48/4/1512053756-jesus-smoking-pipe.png

Merci de m'avoir up j'aurais bidé sinonhttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

C'est bien ?https://image.noelshack.com/fichiers/2022/21/6/1653743887-gang.pnghttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

J'économise encore 3k pour atteindre les 100k et je spend tout dans la cryptohttps://image.noelshack.com/fichiers/2022/21/3/1653500949-20220525-194322.gif

Le 28 mai 2022 à 15:14:20 :

Le 28 mai 2022 à 15:11:48 :
Mais c'est pas le vrais Jinsoul les gars :rire:

Ahi le vrai jinsoul n'existe pas not readyhttps://image.noelshack.com/fichiers/2021/50/6/1639796273-8fc521cb-1ed2-4c74-bb21-53f4bca927e3.png

Si c'est bel et bien moihttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

Le 28 mai 2022 à 15:11:41 :

Le 28 mai 2022 à 15:08:29 Jinsoul_MENHERA a écrit :

Le 28 mai 2022 à 15:06:43 :

Le 28 mai 2022 à 15:03:56 Jinsoul_MENHERA a écrit :
19/3/1557309567-dgsdggd.png

90% de mon time c'est faire fonctionner mon vpn et l'auth pour me connecter à l'infra de mon entreprise de gelemhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

vivement une attaque par supply chain pour pimenter ta viehttps://image.noelshack.com/fichiers/2020/15/5/1586539997-screenshot-20200410-193223382-1.jpg

Ayaaaaa s'ils te retrouvent tu vas te faire tej de ta mission le gelemhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png
inter-contrat pour toihttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

go rabbin des bois dreamhttps://image.noelshack.com/fichiers/2020/15/5/1586539997-screenshot-20200410-193223382-1.jpg

Je te suis après mo nstage dans un cadre INFORMELhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

meme en prison ?https://image.noelshack.com/fichiers/2020/15/5/1586539997-screenshot-20200410-193223382-1.jpg

Je suis déjà en prison dans ma big FOURhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png
Lundi je prends le RER a moitié éclatax pour être dans mon open space avant 9hhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

petit café avec le N+1https://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

https://fr.wikipedia.org/wiki/Big_Four_(audit_et_conseil)

"Le taux de turnover est assez élevé et peut atteindre en moyenne les 20 % en France7, et 15 %-20 % au Royaume-Uni8."

effectivement la prisonhttps://image.noelshack.com/fichiers/2020/15/5/1586539997-screenshot-20200410-193223382-1.jpg

Pire qu'une prison apres un mois j'ai du go psyhttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png

l'enfer, ça me conforme tellement au fait que j'ai bien fait de go frontend à 100%https://image.noelshack.com/fichiers/2019/19/3/1557309567-dgsdggd.png

ça ne m'étonne même pas que les fronteux soient les plus épanouis dans le milieuhttps://image.noelshack.com/fichiers/2019/19/3/1557309567-dgsdggd.png

franchement t'as mon respect pour tenir aussi longtempshttps://image.noelshack.com/fichiers/2019/19/3/1557309567-dgsdggd.png

tu comptes te faire une retraite dans 10 ans j'espère ?https://image.noelshack.com/fichiers/2019/19/3/1557309567-dgsdggd.png

impossible de go retraite apres 10 ans, je suis en stage depuis 3 mois on m'a propose un CDI à 45k brut par moishttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png
Jamais je fais 1 mois de plus là bas après mno stage je suis là juste pour valider mon diplomehttps://image.noelshack.com/fichiers/2020/53/4/1609421325-aahsticker.png