@@ -5,7 +5,6 @@ module.exports = async (log, success, warn, err, cb) => {
55
66 client . onError ( ( ...error ) => {
77 err ( 'Client error' , error ) ;
8- throw new Error ( 'Client error' ) ;
98 } ) ;
109
1110 const chart = new client . Session . Chart ( ) ;
@@ -15,7 +14,6 @@ module.exports = async (log, success, warn, err, cb) => {
1514
1615 chart . onError ( ( ...error ) => {
1716 err ( 'Chart error' , error ) ;
18- throw new Error ( 'Chart error' ) ;
1917 } ) ;
2018
2119 TradingView . getIndicator ( 'STD;Supertrend%Strategy' ) . then ( ( indicator ) => {
@@ -31,7 +29,6 @@ module.exports = async (log, success, warn, err, cb) => {
3129
3230 SuperTrend . onError ( ( ...error ) => {
3331 err ( 'SuperTrend error' , error [ 0 ] ) ;
34- throw new Error ( 'SuperTrend error' ) ;
3532 } ) ;
3633
3734 let QTY = 10 ;
@@ -81,7 +78,6 @@ module.exports = async (log, success, warn, err, cb) => {
8178
8279 CipherB . onError ( ( ...error ) => {
8380 err ( 'MarketCipher B error:' , error [ 0 ] ) ;
84- throw new Error ( 'MarketCipher B error' ) ;
8581 } ) ;
8682
8783 CipherB . onUpdate ( ( ) => {
0 commit comments