Tomila,
LABD is not activly traded instrument.
It may not be traded for 15-20 min.
The only way to get '1 m' ADX calculated use .bfill() or .ffill().
Try this:
"""
ADX Test
"""
import talib
def initialize(context):
context.labd = sid(49072)
def handle_data(context, data):
period = 14
bars = period*2 +1
H = data.history(context.labd, 'high', bars, '1m').ffill()
L = data.history(context.labd, 'low', bars, '1m').ffill()
C = data.history(context.labd, 'price', bars, '1m').ffill()
adx = talib.ADX(H, L, C, period)
labd_adx = adx[-1]
print labd_adx