Created
November 27, 2014 05:40
-
-
Save marketcalls/3010bcc7dc17559ef180 to your computer and use it in GitHub Desktop.
Simple Plugin using dot net SDK for Amibroker
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 AmiBroker; | |
using AmiBroker.PlugIn; | |
using AmiBroker.Utils; | |
namespace SimplePlugin | |
{ | |
public class Class1 : IndicatorBase | |
{ | |
[ABMethod] | |
public ATArray SimplePluginFunc1(ATArray array, float period) | |
{ | |
ATArray result = AFAvg.Ma(array, period); | |
return result; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment