|  | QuantShare 2014-01-20 13:31:58
 
 
  0   
 
 |  | 
	 Bollinger Band indicator is built in so it is something different.
 When you download a indicator from the sharing server, QuantShare asks you if you want to plot that indicator. If you say yes, then it simply adds one instruction to your chart:
 
 a = myIndicator(...);
 plot(a, "");
 
 That is all it does.
 
 You can share an indicator "myIndicator" (Tools -> Create Functions) but not a formula:
 
 a = myIndicator(...);
 plot(a, "");
 
 
 See how "Keltner Channel Indicator" is created. The indicator probably plots two or three lines inside the C# code.
 
 
 
 
 
 
 |  |