Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<div id="chart"></div>
//@version=3
//
study(title = "Heiken Ashi zero lag EMA v1.2 by JustUncleL", shorttitle="HAZEMA v1.2 by JustUncleL", overlay=true)
//
// Title: Heiken Ashi with non lag dot by JustUncleL
// Author: JustUncleL
// Version: 1.2
// Date: 5-feb-2016
//
@mogauvin
mogauvin / git-move-annotated-tag.sh
Created June 22, 2020 13:49 — forked from teerapap/git-move-annotated-tag.sh
Move annotated tag without retagging
#!/bin/sh
# ---------------------------------------------------------------------------
# git-move-annotated-tag.sh - Move annotated tag without retagging
# Author: Teerapap Changwichukarn <[email protected]>
# Usage: git-move-annotated-tag.sh -h for more information
#
# Manual commands:
# > git cat-file -p ${tag_name} | sed "1 s/^object .*$/object ${full_target_hash}/g" | git hash-object -w --stdin -t tag
@mogauvin
mogauvin / MutliTimeFramRSI.txt
Created May 27, 2020 01:57 — forked from TraderX0/MutliTimeFramRSI.txt
Pinescript trading view multi time frame RSI - Allows you to plot upto 3 MTF RSI's on one panel
// All credits go to CMoody for the original Idea...
// THE MTFRSI is an extension of his original script to now encorporate 3RSI's on one panel
study(title="TraderX0 3-RSI MTF", shorttitle="X0_3_RSI_MTF", precision=0)
//candle source
src = close
//rsi setup
//first RSI inputs
firstRsiTimeframe = input(title="Select 1st RSI Timeframe", type=resolution, defval="60")
@mogauvin
mogauvin / docker-help.md
Created March 9, 2020 01:21 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@mogauvin
mogauvin / docker-help.md
Created March 9, 2020 01:21 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@mogauvin
mogauvin / FileHelpersTypeExtensions.cs
Created November 20, 2016 07:31 — forked from rdingwall/FileHelpersTypeExtensions.cs
Set FileHelper's FileHelperEngine.HeaderText via reflection
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
// see http://stackoverflow.com/questions/3975741/column-headers-in-csv-using-filehelpers-library/8258420#8258420
// ReSharper disable CheckNamespace
namespace FileHelpers
// ReSharper restore CheckNamespace
@mogauvin
mogauvin / linqpad-nunitlite.cs
Last active August 2, 2021 19:44 — forked from simoneb/linqpad-nunitlite.cs
NUnitLite in LINQPad
// LINQPad 4
// NUnit 3.4
void Main()
{
// change working folder by specifying the -work flag
// using either a single or double dash makes no difference
new AutoRun().Execute(new[]{"-noheader", @"-work=C:\src\Test\", "--verbose"});
}
// Define other methods and classes here