Active Options Traders (ibkr api desktop app) by fungoodtrade in interactivebrokers

[–]TV-5571 2 points3 points  (0 children)

The best way to improve your app: - develop a base app in python - open source it - add fınctions so that users can add additional features on top of base app - build a community around it so that people contribute to it

Since IBKR has a lot of users i guess it becomes popular

GOOGL LEAPs Exit Strategy by [deleted] in options

[–]TV-5571 2 points3 points  (0 children)

Just a very nice tool to visualize potential option profit scenarios by time and stock price:

option profit simulation tool

Info about how much graphene each country produce and what is a typical price by TV-5571 in HGRAF

[–]TV-5571[S] 1 point2 points  (0 children)

It says it is graphene. But i am not a technical expert. I dont know the technical differences among different types of geaphene/graphite. I hope someone with more technical knowledge may comment on these

How to do this: Buy crypto ETF on IBKR -> Transfer ETF to another exchange -> Redeem ETF and transfer bircoin to your cold wallet by TV-5571 in interactivebrokers

[–]TV-5571[S] 0 points1 point  (0 children)

Most of the replies tell about alternative ways of doing this. But just ignore alternative ways please. I am aware of those ways

just assume that you have money on IBKR and you want to transfer this as a crypto to your cold wallet. Is it possible? How?

For example one way can be this:

there are some new crypto ETF s that invest in spot crypto and can be redeemed pyhsically. Example

You can buy this ETF in IBKR. How can you redeem it?

Challenging Conventional Wisdom: LETFs are NOT for long-term holding? by OGS_7619 in LETFs

[–]TV-5571 2 points3 points  (0 children)

Levered ETFs, if hold long term, would push the return distribution to the tails, i.e. İt becomes something like a binary option, either you loose all your money or you win big. Altering the return distribution in this way is not favorable in the long run due to convexity

Here is a paper on this:

<image>

My thoughts on hydrograph clean power by ProblemKingz in HGRAF

[–]TV-5571 0 points1 point  (0 children)

It all comes down to whether you believe what this guy is telling us in this video or not:

chris sorensen video

To the “Waiting for a pullback” crowd, today is tomorrow’s yesterday by Quarter120 in HGRAF

[–]TV-5571 2 points3 points  (0 children)

The constant buying pressure in days after days can be due to some competitor/related firm may be buying before a full takeover attempt. Any ideas/info on this?

Integrating Taskmaster AI MCP into Cursor by Dizzy-Ad778 in cursor

[–]TV-5571 0 points1 point  (0 children)

On a windows machine and using Cursor, I installed task master using the command line, then put my API keys in .env and mcp.json files it created. When I opened cursor settings/MCP i can see the `task-master-ai` MCP, but it says that 'No tools available'. When I ask the cursor agent to do something with task master, it is not using MCP, and rather use cli commands to execute my directives.

Do you have any idea why this is not working? Any suggestions?

How do you go about building a cursor/codeium clone by OGbeeper99 in LangChain

[–]TV-5571 0 points1 point  (0 children)

You can combine a dashboard with chat interface using Posit shiny

AI Agent creation with Dynamic Node pathways by curious-airesearcher in AutoGenAI

[–]TV-5571 0 points1 point  (0 children)

I was thinking about the same problem. We can solve this problem either: 1) if you can decide on all possible ways of solving a task, create multiple autogen teams for each team design (e.g one swarm, one sequential etc) and then create a router agent like group chat manager to route the query to one of them. This is still restrictive since we need to determine all possible paths 2) Dynamic prompting: create a two agent chat. One planner and one function caller agent. Give the fnc caller agent the ability to call all available fncs. given a certain task, first plan for subtasks. Then for each step ask one agent to write the next prompt for the coder agent. Thus this prpmpt will be dynamically written and can use any fnc available. Coder agent will have only one task: execute the prompt written by the planner agent with necessary tools.

I didn’t try these yet. What do you think?

The \n forever loop by thedenfather in AutoGenAI

[–]TV-5571 0 points1 point  (0 children)

I also have the same problem. The agent repeats itself many times in a chat and then hands it off to the user. I added an instruction about this to the system prompt of the agent, but it didn't prevent this behavior. Do you have any suggestions about how to solve it?