Bitcoin + Ethereum - Buy and Sell Signals - One Minute Chart
Day Trading Bitcoin
It's ALIVE! My trading bot came to life today, and it's averaging 35% net profit on ETH. The code is FREE and is below in the video description. Any help developing it further would be appreciated. Pine Script is the coding language that can only be used on TradingView charts. Enjoy!
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © nostawft
//@version=5 // This is a basic script for adding buy and sell signals based on CCI values
// CCI Indicator cci = ta.cci(close, 120)
// Buy Signal buy = ta.crossover(cci, 0) plotshape(buy, style=shape.labelup, location=location.belowbar, color=color.new(color.green, 0), size='small', text='BUY', textcolor=color.new(color.green, 0))
// Sell Signal sell = ta.crossunder(cci, 0) plotshape(sell, style=shape.labeldown, location=location.abovebar, color=color.rgb(243, 79, 9), size='small', text='SELL', textcolor=color.new(color.red, 0))
// Short Position if sell strategy.entry('Short', strategy.short)
// Cover Position if buy strategy.close('Short')
// Adding strategy function call strategy('CCI Buy Sell Short Cover', overlay=true, initial_capital=100000, calc_on_order_fills=1, pyramiding=10, default_qty_type=strategy.cash, default_qty_value=2000)
Donate Bitcoin - bc1qaf2x0whnap2mgfgy6d4n3ug53qqdvq3qv9z6me Ethereum - 0x912c448444d93af7e522ca5d60c12e87ae481a0e ... https://www.youtube.com/watch?v=9FRe7B9P43M
345930364 Bytes