$ docker
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
// 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 |
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
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 |
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
// 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") |
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
#!/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 |
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=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 | |
// |
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
<!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> |