Search found 36 matches

Go to advanced search

by Deep-Wave
Mon Sep 14, 2020 9:05 am
Forum: Pine Script Q&A
Topic: Fitting the CCI into my stochastic indicator
Replies: 1
Views: 857
 
Jump to post

Re: Fitting the CCI into my stochastic indicator

Hi BillyJ, Both of these technical indicators are oscillators, but they are calculated quite differently. One of the main differences is that the Stochastic Oscillator is bound between zero and 100, while the CCI is unbounded. Due to the calculation differences, they will provide different signals a...
by Deep-Wave
Sun Sep 13, 2020 2:47 pm
Forum: Pine Script Q&A
Topic: Color Change above and below a value
Replies: 3
Views: 1147
 
Jump to post

Re: Color Change above and below a value

Hi Kevin you can implement a color change to your MA with the following code: //@version=4 study("Colored EMA", overlay=true) ema=ema(close, 50) //variable ema assigned to the inbuilt ema function plot(ema, color = close > ema ? color.green : color.red) //plot green ema when the close price is above...
by Deep-Wave
Sun Sep 13, 2020 2:29 pm
Forum: Share Your Scripts
Topic: Script for long & short postions
Replies: 9
Views: 4321
 
Jump to post

Re: Script for long & short postions

Hi Jurgen, thanks for clarifying your setup. I made some modifications to your script, you can check it below. Fyi: I think you received too many signals because of the conditions you plot your signals on. In your original script it were the Golong/Goshort variables that would plot a signal. If you ...
by Deep-Wave
Fri Sep 11, 2020 9:20 am
Forum: Pine Script Q&A
Topic: Using syminfo.type
Replies: 3
Views: 1398
 
Jump to post

Re: Using syminfo.type

Hi Jayforex007,

i found a script that might help you with what you are trying to do.

https://www.tradingview.com/script/ynnS ... info-Type/

(@mod: i hope posting links to external sources is allowed)

Cheers, :cool:
by Deep-Wave
Thu Sep 10, 2020 11:02 pm
Forum: Share Your Scripts
Topic: Script for long & short postions
Replies: 9
Views: 4321
 
Jump to post

Re: Script for long & short postions

Hi Jurgen, I took a look at your script and I have some suggestions (see the code below). Bare in mind, I am not sure I fully understand what you want the script to do exactly but what I got is the following (correct me if I am wrong): Long Setup: Day 1 : The high price crosses above the previous we...
by Deep-Wave
Tue Sep 08, 2020 7:48 am
Forum: Introductions
Topic: Hi Traders
Replies: 2
Views: 1093
 
Jump to post

Hi Traders

Hello everyone, just wanted to quickly introduce myself. My name is Mark and i am from germany. After a couple of years working in the financial industry I started my trading journey in 2017. Like most traders i encountered many problems right from the start - attaining the right trading psychology ...

Go to advanced search