Skip to content

Instantly share code, notes, and snippets.

/*
* License: GNU General Public License Version 3
*/
#property strict
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 clrRed
#property indicator_style1 STYLE_SOLID
#property indicator_color2 clrGreen
@micclly
micclly / listup-terminal-data-path.sh
Last active December 19, 2017 11:25
This is a script to list up all terminal data path of MetaTrader4 build 600 or later
#!/bin/bash
find $(cygpath $APPDATA)/Roaming/MetaQuotes/Terminal/ -mindepth 2 -maxdepth 2 -name origin.txt -exec sh -c 'echo {} && cat {} && echo' \;
@micclly
micclly / make-symlinks-to-termina-data-path.sh
Created February 18, 2014 01:56
This is a script to make symbolic links to all terminal data path of MetaTrader4 build 600 or later
//+------------------------------------------------------------------+
//| Kairi.mq4 |
//| Copyright(C) 2005 S.B.T. All Rights Reserved. |
//| http://fumito.s68.xrea.com/sb/sufx/ |
//+------------------------------------------------------------------+
#property copyright "Copyright(C) 2005 S.B.T. All Rights Reserved."
#property link "http://fumito.s68.xrea.com/sb/sufx/"
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 1
//+------------------------------------------------------------------+
//| MACD 2 Colour HISTOGRAM.mq4 |
//| Copyright ゥ 2006, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ゥ 2006, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property link "2 colour Histogram added by cja"
#property indicator_separate_window
@micclly
micclly / Period_Converter_OptMOD.mq4
Last active June 19, 2019 06:04
Period_Converter_OptMOD.mq4 (build 6xx supported version)
//+------------------------------------------------------------------+
//| Period_Converter_Opt.mq4|
//| Copyright (c)2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//| Ver.1.6 Modified by micclly|
//| Ver.1.5 Modified by fai |
//| Modified by wfy05@talkforex based on Period_Converter|
//| http://www.talkforex.com |
//+------------------------------------------------------------------+
#property copyright "wfy05@talkforex.com"