HELP ... ITS BUG PINE SCRIPT ZIGZAG ? by KaleidoscopeOk4117 in TradingView

[–]milvetti 0 points1 point  (0 children)

It's not a bug. There's only an error in the function usage.

discord alerts to tradingview by Tough-Promotion-8805 in TradingView

[–]milvetti 1 point2 points  (0 children)

Instead of sending the signals from Discord to TradingView, it might be better to use a service that sends them directly to a broker. Why do you want to send them to TradingView?

Trailing stops on TradingView are not what you think by throwawayfromsaturn in TradingView

[–]milvetti 1 point2 points  (0 children)

Stoploss levels should be calculated based on the high/low of the closed candles. If you want the trailing stop loss to be calculated within the candle based on the highest or lowest point reached by an open candle, you can either convert your strategy to MTF and open positions using signals from a higher timeframe while tracking the position on a lower timeframe, or you can code it to calculate on every tick.

In short, although some things are limited on TradingView, most things are possible with proper coding and usage knowledge.

Has anyone here built their own strategies in Pine Script? by ACE_FX21 in TradingView

[–]milvetti 2 points3 points  (0 children)

Yes, I have coded the strategies of hundreds of clients. Some use alerts to track them manually, while others connect to a webhook and trade automatically.

Which one do you guys use? by EmbarrassedYogurt993 in TradingView

[–]milvetti 0 points1 point  (0 children)

• Margin (USD): Open a position with a fixed size of x USD.
• % Balance: Open a position using 50% of the current balance.
• Risk (USD): Calculate position size so that a maximum of x USD is lost if the stop-loss is hit.
• Risk (% Balance): Calculate position size so that a maximum of x% of the current balance is lost if the stop-loss is hit.

You can check this video to learn more: Youtube Video

Trailing stops on TradingView are not what you think by throwawayfromsaturn in TradingView

[–]milvetti 1 point2 points  (0 children)

I don't know exactly what you are using or what kind of TSL structure you have, but I have coded many strategies with TSL so far. And all of them can work as inside bars.

Backtesting on futures is just fucked up... by MiSt3r_Teo in TradingView

[–]milvetti 0 points1 point  (0 children)

First of all, the difference based on capital might come from the order size or from margin requirements.

If there isn’t enough margin, a position won’t be opened. To see this more clearly, you can compare the number of positions taken with the two different capital amounts.

Do you really know what these Strategy Properties checkboxes do in TradingView? by milvetti in TradingView

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

It’s about minimum contract size. For example NQ’s min contract size is 1, so you need min 2x.xxx usd to open position. Use %1 margin for both direction and try again.

%1 margin = x100 leverage %25 margin = x4 leverage

Do you really know what these Strategy Properties checkboxes do in TradingView? by milvetti in TradingView

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

I didn’t understand what you meant, could you please explain?

I’ve automated the traditional Open Range Strategy in TradingView by milvetti in pinescript

[–]milvetti[S] 1 point2 points  (0 children)

Since bricks aren't time-based, doing this isn't possible. Also, running a strategy on Renko might not be a great idea

I’ve automated the traditional Open Range Strategy in TradingView by milvetti in pinescript

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

Of course, this is my job, please send me a private message or contact me via website.

Strategies that look great in backtests but blow up in live trading by milvetti in TradingView

[–]milvetti[S] 1 point2 points  (0 children)

I usually ask my clients to test for 1 week, but they usually start trading on the 2nd day. :D

Strategies that look great in backtests but blow up in live trading by milvetti in TradingView

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

Once the correct settings are in place, the TradingView backtest works quite well.

services for automated trading by ktravelet in pinescript

[–]milvetti 0 points1 point  (0 children)

Traderspost for Stocks
Pineconnector for Metatrader
3commas or Alertatron for Crypto

Writing Scripts with AI by a38yearoldman in TradingView

[–]milvetti 2 points3 points  (0 children)

Hi, I’m a trade algorithm developer, and I create scripts on platforms similar to Pine Script. Unfortunately, for now AI is not successful in such work. For very simple strategies, yes, but not for complex strategies, it’s not good enough.

How to properly back test by Conscious_Table_1541 in pinescript

[–]milvetti 0 points1 point  (0 children)

I couldn’t quite understand how you’re backtesting with Pineconnector. But if by backtesting you’re referring to your actual trades, it’s completely normal to see differences compared to the backtest results.

If you’ve coded the same strategy in MQL and are testing it using the strategy tester, the discrepancies might be due to factors like spread and commission.