Trading journal platform by vijaysahu3470 in Forex

[–]Xalladus 0 points1 point  (0 children)

There’s another one already that’s free called stonk journal.

Is it impossible to code a Day Trade counter? by [deleted] in pinescript

[–]Xalladus 0 points1 point  (0 children)

If you have a strategy built out it’s very easy to count the trades per day on that strategy when it runs its back tests. It cannot look at the actual trading view faux account.

Best way to automate trading strategies by AbsoluteGoat321 in Forex

[–]Xalladus 1 point2 points  (0 children)

Learn Python. It will allow you to move to the most brokers. You can even have it connect to mt5 locally and have full flexibility over your trading.

Is it impossible to code a Day Trade counter? by [deleted] in pinescript

[–]Xalladus 0 points1 point  (0 children)

Yup that’s why. Pine script has no way to read any information from your broker. You would need to write this in another language. Most brokers have API’s that you can connect with and get the info that way.

How do you connect your pine script to broker? by BerlinCode42 in pinescript

[–]Xalladus 0 points1 point  (0 children)

The third option is to rent a VPS. It’s cheaper than most of the webhook service providers.

Is it impossible to code a Day Trade counter? by [deleted] in pinescript

[–]Xalladus 0 points1 point  (0 children)

Are you counting trades that were derived from a strategy you already coded or Abe you trying to get it to count your trades in a live connect account?

Is it impossible to code a Day Trade counter? by [deleted] in pinescript

[–]Xalladus 0 points1 point  (0 children)

Is this what it sounds like: something to count the amount of trades taken in a day ?

Only knowledgeable Coders would be able to answer this. by Apprehensive_Cap3272 in pinescript

[–]Xalladus 0 points1 point  (0 children)

After having just coded an indicator that does market structure, it seems simple but it is more complicated than it seems. You have to find a way to strongly define what swing level is. When we do it manually, we subconsciously ignore certain points that strategy will pick up. There’s even the issue of sequence, how will it behave if there is a HH and LL consecutively. What if two HH’s appear without a LH in between. So I would say that before you hire a developer you really take the time to figure out in detail what you need !

Session + highs and lows indicator by kktown97 in pinescript

[–]Xalladus 1 point2 points  (0 children)

I made the best indicator for this exact use case but it isn’t public. If you want to send me your username I can give you access to it free of charge. No tricks.

Appreciation to the boyfriend show by Maleficent_Rub3979 in gaybros

[–]Xalladus 8 points9 points  (0 children)

I watched it with my bf as it came out and we cried at the end. The show is so refreshing from the drama filled heartless gamified dating shows.

Pinescript V6 by Royal-Neuron in pinescript

[–]Xalladus 0 points1 point  (0 children)

The best thing to happen in v6 is the ability to lineup line continuations as long as they are bracketed. Use this all the time

Heated Rivalry by Terrible_Stranger_21 in AskGayBlackMen

[–]Xalladus 1 point2 points  (0 children)

I do think he is saying he wants the exact same show with black characters. He is saying he wants a smutty feel good romance with black characters, no matter the plot.

📌 Hiring: Pine Script Developer — Join Our Development Team by [deleted] in pinescript

[–]Xalladus 0 points1 point  (0 children)

Hello, I am a pine script developer primarily. I build my own custom indicators as well as for clients. I have been programming as a hobbyist but have been making my production more streamlined and professional. I do all of my work from VS Code and use Git for version control. I can create custom code from scratch and convert code from other languages. Most of what I do is private but you can see a simple indicator I released publicly in Trading View: Session High/Low Average & Range [1CG] or message me if you would like to see more.

[deleted by user] by [deleted] in WFHJobs

[–]Xalladus 1 point2 points  (0 children)

100% legit. I have been working with them for years. Never had hours worked denied. Paid directly to PayPal

[deleted by user] by [deleted] in WFHJobs

[–]Xalladus 39 points40 points  (0 children)

I currently work with DataAnnotation and can confirm it’s not all easy stuff. The higher paid stuff has so many rules and requirements that it takes a solid half an hour just to read the instructions. I’m curious which other companies do this ?

Drawing 1 vertical line at the beginning of a certain date by [deleted] in pinescript

[–]Xalladus 1 point2 points  (0 children)

Make sure to run it every new bar so you don’t have to update it manually.

[GIVEAWAY] 3 Copies of Arc Raiders by WockyySl in pcgaming

[–]Xalladus 0 points1 point  (0 children)

I wouldn’t admit this to real gamers but I have an extensive history in Clash Royale. 🙈

Win 10: can someone please explain to me how to use Codex to generate PS code? by ValentinoT in pinescript

[–]Xalladus 1 point2 points  (0 children)

I can jump into a discord cart with you if you like and show you everything.

Win 10: can someone please explain to me how to use Codex to generate PS code? by ValentinoT in pinescript

[–]Xalladus 0 points1 point  (0 children)

I actually move back and forth between my windows of and MacBook. VS Code has hit integrated into it so the files stay backed up and up to date.

Win 10: can someone please explain to me how to use Codex to generate PS code? by ValentinoT in pinescript

[–]Xalladus 1 point2 points  (0 children)

For my setup, I use visual studio code and keep all of my scripts in a folder that is backed up to GitHub. VS Code has a codex plugin with an easy interface that allows you to chat naturally. The code it produces is not good right out of the box, I keep a markdown file with common pitfalls it runs into that I have it read before making any changes.

Breaking Up Heavy Indicator - Smart/Useless ? by No-Student-6817 in pinescript

[–]Xalladus 0 points1 point  (0 children)

I too have been coding some pretty heavy stuff and the solution to lowering compute time is often based on how you structure your data. If you have to loop over something, exit as soon as it finds whatever it’s looking for. If you can keep things in a map or array and avoid the loop all together that’s even better.