This app was designed to backtest DCA or martingale strategy. You can test pairs that are available on Binance listing. The advantages are: How to use it? Choose the symbol
This script strategy is the same as previous script from this page here. You can choose whether: Here is the code: //@version=5strategy(“SpotDCABot[kriptos.my]”, overlay=false, initial_capital=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=99, commission_type=strategy.commission.percent, commission_value=0.3)// This
This is a tool to better visualize each order level for every safety order. It is a pine script that you can add on onto TradingView chart. The components are:
Continue ReadingPine Script Indicator: DCA Martingale Visualizer
This is an improved version of previous Martingale strategy. We have fixed the Stop Loss function to be able to calculate drawdown of cumulative all positions. Normally we do not
This script actually does not really involve any Technical Analysis (TA). It just a bot that runs on traditional martingale strategy. Martingale startegy is a risk management strategy that originated in
This script has more indicators than previous code. It uses: 1. Exponential Moving Average (EMA) 2. Relative Strength Index (RSI) 3. Average True Range (ATR) 4. Volume EMA and RSI
This is a special script that has been tested longest compared to previous script. Another indicator is added from the previous script which is the Fibonacci retracement level. Stop Loss also
Continue ReadingNew Pine Script: Fibonacci Retracement + EMA + RSI = Momentum Strategy
This pine script is the improved version of previous script. Check here. The strategy mainly the same, except it now has StopLoss function, so you sleep soundly knowing your capital
This post is mainly for my own reference actually, so that i could easily come back grab the lines of pine scripts to be inserted into my pine script strategy.
Continue ReadingMy sets of favourite pine codes (for easy revision)
This is a momentum strategy that strikes while its hot and exits before the momentum ended. It is actually quite by using only 2 indicators which Exponential Moving Average (EMA)
Continue ReadingNew Pine Script Published: EMA RSI Momentum Strategy