定義
			
				ta.macd(source, fastlen, slowlen, siglen)			
										引数
				
					
						
							| 引数名 | 
							内容 | 
							初期値 | 
						
					
					
																				
								
Warning:  Undefined variable $tr in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
Warning:  foreach() argument must be of type array|object, null given in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
							
																source | 
																計算対象の価格 | 
																 | 
																						
								
Warning:  Undefined variable $tr in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
Warning:  foreach() argument must be of type array|object, null given in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
							
																fastlen | 
																短期EMAの計算期間 | 
																 | 
																						
								
Warning:  Undefined variable $tr in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
Warning:  foreach() argument must be of type array|object, null given in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
							
																slowlen | 
																長期EMAの計算期間 | 
																 | 
																						
								
Warning:  Undefined variable $tr in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
Warning:  foreach() argument must be of type array|object, null given in /home/tradetech1/tradetech.online/public_html/wp-content/themes/tradetechonline_swell/single-dict-pine-v5.php on line 77
							
																fastlen | 
																シグナルラインの計算期間 | 
																 | 
																										
				
						
						戻り値
			
				[float, float, float] : MACDライン,シグナルライン, ヒストグラムライン、の値			
						
						サンプルコード
			12日/26日/9日のMACDを描画
[macdLine, signalLine, histLine] = ta.macd(close, 12, 26, 9)
plot(macdLine, color=color.blue)
plot(signalLine, color=color.orange)
plot(histLine, color=color.red, style=plot.style_histogram)