I'm experiencing unusual behavior in the debugger. Are there namespace restrictions in the debugger or more generally restrictions on assigning variables there?
It took like 10 attempts to get prices50 saved. Then when I went to get the moving average I ran into the following
> ma50 = prices50.mean()
> ma50
NameError: name 'ma50' is not defined
> ma = prices50.mean()
> ma
ma: Series
In general, it seems like the debugger doesn't 'like' variable names that include an underscore or numbers. Can someone point me in the right direction?