This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
// | |
// Advanced rsi | |
// Author: Walter Tosolini | |
// Website: https://trading.tosolini.info | |
// | |
// join RSI + Stochastic RSI | |
// README: | |
// useful to be used in scalping TF 5/15 with Heikin Ashi candlestick | |
// First check the trendline in Daily and Hour TF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
// 3 EMA + 1 MA | |
// Author: Walter Tosolini | |
// Website: https://trading.tosolini.info | |
indicator(title='E-MA Moving Averages', shorttitle='E-MA', overlay=true) | |
// logic section | |
len1 = input.int(5, minval=1, title='Period', group='EMA 1') | |
src1 = input.source(close, title='Source', group='EMA 1') | |
color1 = input.color(color.orange, title='Color', group='EMA 1') | |
out1 = ta.ema(src1, len1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"host": "localhost", | |
"port": 8069, | |
"database": "mydb", | |
"user": "myuser", | |
"password": "mypassword" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName vecchiodominio.com | |
Redirect permanent / http://nuovodominio.com/ | |
</VirtualHost> |