IvAttributes RenkoTrader v1.6 Ninjatrader

https://pastecode.io/s/2mj8xbbw https://ninjatraderecosystem.com/user-app-share-download/renko-trader-bot-semi-automatic-with-interface-and-higher-time-frame-filter/
 avatar
unknown
csharp
9 months ago
614 B
17
No Index
#region Using declarations
using System;

#endregion

namespace IvAttributes
{
	public class IvShowHideAttribute : Attribute
	{
		
		public	string	PropertyName 		{get;private set;}
		public	string	PropertyResult 		{get;private set;}
		
		public IvShowHideAttribute(string PropertyName, string PropertyResult)
		{
			this.PropertyName	=	PropertyName;
			this.PropertyResult	=	PropertyResult;
		}
		
	}

	public class DisableIfEnabledAttribute : Attribute 
	{
		public string PropertyName { get;private set;}

		public DisableIfEnabledAttribute(string PropertyName)
		{ 
			this.PropertyName = PropertyName;
		}
	}
}
Editor is loading...
Leave a Comment