This is a n improved version of previous post. This indicator has added Price Drop Mutiplier. It will give you more flexibility of determining next safety order level. The follwing
Continue ReadingNew pine script Indicator: DCA Martingale V2
Modification has been made to the desktop version so that this mobile version can fit all the most necessary information on a single page on your phone browser without needing
Continue ReadingMobile version DCA backtester has ben released
This post is continuation from previous post regarding the launch of backtester app. You can use the data gathered into these 3 exchangers. The one that has the most function
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