Skip to content

Instantly share code, notes, and snippets.

View mascot6699's full-sized avatar
:octocat:
Here to help everyone 😄

Umang Shukla mascot6699

:octocat:
Here to help everyone 😄
View GitHub Profile
//@version=4
// CIRCLES:
// - LITTLE: They appear at all WaveTrend wave crossings
// - GREEN: The wavetrend waves are at the oversold level and have crossed up (bullish)
// - RED: The wavetrend waves are at the overbought level and have crossed down (bearish)
// - PURPLE: Appear when a bullish or bearish divergence is formed and WaveTrend waves crosses at overbought and oversold points
// - GOLD: When RSI is below 20, WaveTrend waves are below or equal to -80 and have crossed up (DONT BUY WHEN GOLD CIRCLE APPEAR)
// - None of these circles are certain signs to trade. It is only information that can help you.
//
// I am not an expert trader or know how to program pine script as such, in fact it is my first indicator only to study and all the code is copied and modified from other codes that are published in TradingView.
@mascot6699
mascot6699 / master.txt
Created June 12, 2019 11:52 — forked from aivarasko/master.txt
Kubernetes The Hard Way
#!/bin/bash
set -euox pipefail
IFS=$'\n\t'
curl -L https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 -o cfssl
curl -L https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 -o cfssljson
curl -L https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64 -o cfssl-certinfo
chmod +x cfss*
mv cfssl* /usr/local/bin/
cfssl version
@mascot6699
mascot6699 / letsencrypt.conf
Created January 8, 2019 15:01 — forked from bouroo/general.conf
Nginx Config
server {
listen 80 default_server deferred;
listen [::]:80 default_server deferred;
server_name _;
location ^~ /.well-known/acme-challenge {
allow all;
# Install https://certbot.eff.org/
# certbot certonly --webroot --email your@email --agree-tos --preferred-challenges http -w /etc/letsencrypt/webroot/ -d your.domain -d your2.domain
default_type text/plain;