Skip to main content

Posts

Latest Crypto Fear & Greed Index


New Pine Script Stratgey: Buy on Whale Signal

This startegy is adapted from an indicator, Multiple Strategies by Lupown. There were many indicators on this script originally, but i have simplified it to only Whale detector, which is thanks to BLACKCAT1404.  Startegy Description: It places buy order when then whale detector bar reaches certain threshold level which you can adjust as well as the Take Profit and Stop Loss. Recommended Settings: Pair: ETHUSDT  (Bybit), BTCUSDT (Binance) Time frame: ETH 15min Initial Capital: 100 Base Currency: Default Order Size: 100% equity Pyramiding: 1 order Commission: 0.1 % The above setting ETHUSDT is the one i found most profitable. Others are yet to be tested. Each pair of token has different threshold, suitable time frame, TP and SL. You have to test one by one to get the best result. Do share your best strategy setting in the comment.  *credit to LUPOWN and BLACKCAT1404     // @version= 4 strategy ( "WHALE pump signal [credit to Lupown,Blackcat1404]" , overlay =false, initial_ca

New Pine Script Strategy: MA Crossover Momentum

This strategy is quite simple, it only uses strategy uses EMA and SMA crossover. Since now is bullish season, this bot able to catch bullish momentum upon starting, and it will exit the position when the momentum ends.  Strategy Description: It buys when the EMA200 line crosses up SMA800 line. Exit when EMA200 crosses down EMA220. The exit strategy works almost like trailing stop loss. Potential ROI Monthly (in bullish trend): 0-15% Recommended Settings: Pair:  BTCUSDT, ETHUSDT   Time frame: 1min Initial Capital: 100 Base Currency: Default Order Size: 90 USDT Pyramiding: 1 order Commission: 0.1 % *This bot works best at TF 1min with large market caps ie. BTC,ETH. For smaller market caps, its recommended to use TF 5mins. // @version= 4 strategy ( "EMA Crossover[www.capayam.com]" , overlay =true ) // TF1min works best with large market cap coins ie BTC,ETH, TF5min workes better with smaller caps ie FET, ATOM // Define input parameters ema200_length = input ( 200 , title = &

New Script: VWAP strategy

This strategy uses VWAP with period 7. The success rate about 50%, and one huge drawback is the huge drawdown. I do not set up stop loss for this strategy. Strategy Description: It buys when the price crosses up VWAP line. Exit when EMA50 crosses down SMA100. Potential ROI Monthly (in bullish trend): 0-10% Recommended Settings: Pair: BTCUSDT, TIAUSDT Time frame: 5mins Initial Capital: 100 Base Currency: Default Order Size: 98% of equity Pyramiding: 1 order Commission: 0.1 % // @version= 4 strategy ( "VWAP+MA[www.capayam.com]" , overlay =true ) // Input for the VWAP period cumulativePeriod = input ( 7 , title = "VWAP Period" ) // Calculate VWAP typicalPrice = ( high + low + close ) / 3 typicalPriceVolume = typicalPrice * volume cumulativeTypicalPriceVolume = sum ( typicalPriceVolume , cumulativePeriod ) cumulativeVolume = sum ( volume , cumulativePeriod ) vwapValue = cumulativeTypicalPriceVolume / cumulativeVolume // Plot VWAP plot ( vwapValu

New script published: EMA-SMA cross

This strategy is pretty simple actually, based on ride trend principle. It exits when trend started to go down. During bearish, it will stay in cash. Strategy Description: It buys when the EMA50 line crosses up SMA2000 line. Exit when EMA50 crosses down SMA100 . Potential ROI Monthly (in bullish trend): 0-5% Recommended Settings: Pair: BTCUSDT, MATICUSDT, TIAUSDT Time frame: 5mins Initial Capital: 100 Base Currency: Default Order Size: 100% of equity Pyramiding: 1 order Commission: 0.1 % // @version= 4 strategy ( "EMA-SMA Crossover [www.capayam.com]" , overlay = true ) // Define input parameters emaLength = input ( 50 , title = "EMA Length" ) smaShortLength = input ( 100 , title = "SMA Short Length" ) smaLongLength = input ( 2000 , title = "SMA Long Length" ) // Calculate EMA and SMA values ema50 = ema ( open , emaLength ) sma100 = sma ( open , smaShortLength ) sma2000 = sma ( open , smaLongLength ) // Plot EMA and SMA on th

New Pine Script Published: Buy the Dip 2-Weeks-Low

This strategy is practically the same as before here , just it is revised with longer time frame for better backtesting. And it has modifiable input tab. Strategy Description: It buys when the price dip at 2-week-low. The take profit is set at 3% and stop loss at 1%. Potential ROI Monthly (in sideway): 0-10% Recommended Settings: Pair: MATICUSDT, OPUSDT, ATOMUSDT, ARBUSDT Time frame: 15mins (*Optional: You can use TF5min, but adjust the Number of  Candles = 4100) Initial Capital: 100 Base Currency: Default Order Size: 100% of equity Pyramiding: 1 order Commission: 0.1 % Take Profit: 3% Stop Loss: 1% // @version= 4 strategy ( "Buy2weeksLow-TF15min[www.capayam.com]" , overlay = true ) // Input for the number of candles num_candles = input ( 1344 , title = "Number of Candles" , minval = 1 ) // Define the candles low price low_candles = lowest ( low , num_candles ) // Define the buy condition buy_condition = low <= low_candles // Create the buy order if

Comparison between 2 Smart Rebalance Bot

Smart rebalance is one of the kinda new features offered by many Centralized exchanger (CEX). And it has come to my liking during bull run u can cover many tokens than just run 1 single token with 1 bot. Because most tokens/coins price do not move parallel to each other, it will automatically buy at low, sell at high each coins in order to rebalance the proportion that you have preset.  But this strategy works best during bullrun. During bearish period, when all coins go down, u will still see decline of the portfolio worth. Usually i use this bot for coins that i have high convictions on them i would HODL them for long.  Here, I just wanna share smart rebalance bots from 2 different CEX. They are from Kucoin and BitGet. The following are the snapshots of the running bot after 60days. BitGet Smart Rebalance Bot Kucoin Smart Rebalance Bot I started out with Bitget first, then after several hours, i decided to make comparison with Kucoin. I ran them for two months.  I chose BTC, ETH, LIN

New Pine Script: RSI Cross Strategy

This strategy only uses RSI value and lines. RSI fast length at 12, while RSI slow legth at 21. And we determined the bullish momentum by selecting RSI level >63. Pretty simple. And its meant for short time frame. Strategy Description: RSI (12) crosses up RSI (21) line, and RSI level above 63 Expected potential ROI Monthly (in sideway/bullish market): 8% Recommended Settings: Pair: BTCUSDT Time frame: 5min Initial Capital: 100 Base Currency: Default Order Size: 33% equity Pyramiding: 3 Commission: 0.1 % Exit strategy: TP or SL Take Profit: 3% Stop Loss: 1% // @version= 4 strategy ( "RSI Crossover Strategy [www.capayam.com]" , overlay = true ) // Input parameters fastLength = input ( 12 , title = "Fast RSI Length" ) slowLength = input ( 21 , title = "Slow RSI Length" ) rsiOverboughtLevel = input ( 63 , title = "RSI Overbought Level" ) takeProfitPercentage = input ( 3 , title = "Take Profit (%)" ) / 100 stopLossPercentage