User Portlet User Portlet

Discussions
DynamicModule[{linePosition = 1}, Column[ { Row[ { Graphics[{FaceForm[LightGray], EdgeForm[Gray], Rectangle[{0, 0}, {10, 2}], Dynamic@{Dashed, Line[{{0, linePosition}, {10, linePosition}}]}}, ...
Welcome to Wolfram Community! Please provide your efforts in the form of the Wolfram Language code. This will make it easier for other members to help you. Check several methods available to include your code in the rules http://wolfr.am/READ-1ST
Hello Eric, I apologize for the long delay in my response, I want to see the index because in my stock Dataset I have a field called "Index". My algorithms use that index and when something goes wrong (or seems to go wrong) with the calculations I...
Do you know about `AutoGeneratePackage`? Either code below will save the cells marked `InitializationCell` (see menu Cell > Cell Properties > Initialization Cell, shortcut ctrl-8): SetOptions[EvaluationNotebook[], AutoGeneratedPackage ->...
If you have a cell with the following content: a(*A comment*) b it is interpeted as two separate inputs. On the contrary, with this Module[{}, a(*A comment*) b] it is interpreted as a multiplication. Try evaluating them.
Hello all, I was wondering if anyone out there had written algorithms to find Elliott Waves in a stock data display. I have written algorithms (for the fun of it) to find all the potential Elliott Waves in a candlestick chart and to represent...
This reminds me of that [old discussion][1] from three years ago. [1]: https://community.wolfram.com/groups/-/m/t/1865277?p_p_auth=6Se8T26U
Hello Rohit, Sure: First, here is my connection string:` private const string ConnectionString = @"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog = StockDataDB; Integrated Security = True; Connect Timeout = 30; Encrypt=False"; ` Then, here...
Hello Eric. Thank you for your suggestion. After thinking it over, I tend to agree with you that my isValidDatasetQ logic should be somewhere else rather than in checking the arguments during the function call. I mark your suggestion as an answer....
Look into CloudObject, CloudPut, etc.